Skip to content

Commit 035c569

Browse files
committed
Solution to evens loop exercise.
1 parent 1c6b311 commit 035c569

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

evens.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
for i in range(2, 21, 2):
2+
print(i)
3+

0 commit comments

Comments
 (0)