EasyOutput prediction

break exits the loop

What does this code print?

for n in range(6):
    if n == 3:
        break
    print(n)

← → arrow keys to navigate

Sign in to save your progress.