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.

continue skips the rest of the iteration - Python Control Flow Quiz | Unnested