From 91c697224efa7c3ba1db668dc03a8a9777e344c2 Mon Sep 17 00:00:00 2001 From: cheeks <134818917+leftovertoast@users.noreply.github.com> Date: Tue, 21 Jan 2025 11:53:48 -0500 Subject: [PATCH] Completed 4-3 Counting to Twenty --- Chapter_04/countingToTwenty.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Chapter_04/countingToTwenty.py diff --git a/Chapter_04/countingToTwenty.py b/Chapter_04/countingToTwenty.py new file mode 100644 index 0000000..3d9bcaf --- /dev/null +++ b/Chapter_04/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) +