Q. What is the output of the following code?
Code:
i=1
while(i<=3):
print(i)
i=i+1
β
Correct Answer: (B)
1 2 3
i=1
while(i<=3):
print(i)
i=i+1
You must be Logged in to update hint/solution