Completed 4-7 Threes

This commit is contained in:
cheeks 2025-01-21 12:29:42 -05:00
parent 159db6842c
commit 9981331fda

5
Chapter_04/4-7_threes.py Normal file
View File

@ -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)