From 70240c3f8d8b9986c65e9d3f3bbfed35db28675d Mon Sep 17 00:00:00 2001 From: cheeks <134818917+leftovertoast@users.noreply.github.com> Date: Tue, 21 Jan 2025 11:54:35 -0500 Subject: [PATCH] rename file to follow convention --- Chapter_04/4-3_countingToTwenty.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Chapter_04/4-3_countingToTwenty.py diff --git a/Chapter_04/4-3_countingToTwenty.py b/Chapter_04/4-3_countingToTwenty.py new file mode 100644 index 0000000..3d9bcaf --- /dev/null +++ b/Chapter_04/4-3_countingToTwenty.py @@ -0,0 +1,6 @@ +# Excercise 4-3 Counting to Twenty +# Learning Objective: Use for loop and range method. + +for number in range(1, 21): + print(number) +