python-crash-course/Chapter_04/countingToTwenty.py
2025-01-21 11:53:48 -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)