python-crash-course/Chapter_04/4-3_countingToTwenty.py
2025-01-21 11:54:35 -05:00

7 lines
134 B
Python

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