Q. What will be the output of the following code?
Code:
x = 12
for i in x:
print(i)
β
Correct Answer: (C)
Error
x = 12
for i in x:
print(i)
You must be Logged in to update hint/solution