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