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