Q. What will be the output of the following Python code?
Code:
i = 1
while True:
if i%3 == 0:
break
print(i)
i + = 1
β
Correct Answer: (B)
error