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