A
Q. What is the output of the following code?
Code:
i=1
while(i<=3):
print(i)
i=i+1
while(i<=3):
print(i)
i=i+1
- Correct Answer - Option(B)
- Views: 8
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.