Q. What will be the output of the following Python code?
Code:i = 5
while True:
if i%0O11 == 0:
break
print(i)
i += 1
β
Correct Answer: (B)
5 6 7 8
i = 5
while True:
if i%0O11 == 0:
break
print(i)
i += 1
You must be Logged in to update hint/solution