R
Q. What is the output of the following code?
Code:
True = False
while True:
print(True)
break
while True:
print(True)
break
- Correct Answer - Option(C)
- Views: 120
- Filed under category Python
Discusssion
Login to discuss.