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