7 lines
137 B
Python
7 lines
137 B
Python
# Excercise 4-3 Counting to Twenty
|
|
# Learning Objective: Use for loop and range method.
|
|
|
|
for number in range(1, 21):
|
|
print(number)
|
|
|