Skip to content

Commit f525dd8

Browse files
committed
for loop added
1 parent 9c1eae1 commit f525dd8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

chapter_03/summary.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@
1414
i += 1
1515
# ====================================
1616
print('\n______for loop______\n')
17+
for i in range(1, 11, 2):
18+
print(i)
19+
# ====================================
20+
print('\n____________\n')

0 commit comments

Comments
 (0)