Q. What will be the output of the following Python code?
Code:
i = 1
while True:
if i%0O7 == 0:
break
print(i)
i += 1
β
Correct Answer: (A)
1 2 3 4 5 6