Files
grunderna-i-programmering-a…/kapitel7/sidan_122_ex1.py

5 lines
77 B
Python

for i in [1, 2, 3, 4, 5]:
if (i == 3):
continue
print (i)