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