Python - While Loop
What is the output of this code?
i = 0
while i < 3:
print(i)
i += 1
else:
print('Done')What is the output of this code?
i = 0
while i < 3:
print(i)
i += 1
else:
print('Done')15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions