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