python-crash-course/Chapter_04/4-03_counting_to_twenty.py
2025-01-22 12:32:29 -05:00

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)