EasyOutput prediction
continue skips the rest of the iteration
What does this code print?
for i in range(5):
if i % 2 == 0:
continue
print(i)← → arrow keys to navigate
Sign in to save your progress.
What does this code print?
for i in range(5):
if i % 2 == 0:
continue
print(i)← → arrow keys to navigate
Sign in to save your progress.