Börjat lägga till kodexempel
This commit is contained in:
5
kapitel7/continue-ex1.py
Normal file
5
kapitel7/continue-ex1.py
Normal file
@@ -0,0 +1,5 @@
|
||||
for i in [1, 2, 3, 4, 5]:
|
||||
if (i == 3):
|
||||
continue
|
||||
print(i)
|
||||
|
Reference in New Issue
Block a user