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