Skip to content

Commit 5bf6bbf

Browse files
committedNov 19, 2020
contine keyword added
1 parent 5fc1a6c commit 5bf6bbf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎chapter_03/summary.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,9 @@
2222
if i == 5:
2323
break
2424
print(i)
25+
# ====================================
26+
print('\n______Continue keyword______\n')
27+
for i in range(1, 11):
28+
if i == 5:
29+
continue
30+
print(i) # print without (i) value

0 commit comments

Comments
 (0)
Please sign in to comment.