6 lines
77 B
Python
6 lines
77 B
Python
for i in [1, 2, 3, 4, 5]:
|
|
if (i == 3):
|
|
continue
|
|
print(i)
|
|
|