Junior — Senior
What numbers will the loop with the continue statement print
livecode
Task condition
Analyze the given code fragment and specify which values will be displayed on the screen:
for idx in range(5):
if idx == 0:
continue
print(idx)