Python - Loop Control
What is the output of this code?
for i in range(3):
if i == 1:
continue
print(i)for i in range(3):
if i == 1:
continue
print(i)15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions