From 9981331fdaf23da5fb40c9e4f4b25f774fa1d198 Mon Sep 17 00:00:00 2001 From: cheeks <134818917+leftovertoast@users.noreply.github.com> Date: Tue, 21 Jan 2025 12:29:42 -0500 Subject: [PATCH] Completed 4-7 Threes --- Chapter_04/4-7_threes.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Chapter_04/4-7_threes.py diff --git a/Chapter_04/4-7_threes.py b/Chapter_04/4-7_threes.py new file mode 100644 index 0000000..6660edc --- /dev/null +++ b/Chapter_04/4-7_threes.py @@ -0,0 +1,5 @@ +# Exercise 4-7 Threes +# Learning Objective: Utilize third argument of Range() to print in multiple of 3's between 3 and 30. + +for value in range(3, 30, 3): + print(value) \ No newline at end of file