A
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
while True:
if i%0O11 == 0:
break
print(i)
i += 1
- Correct Answer - Option(B)
- Views: 36
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.