2025-01-22 12:32:29 -05:00

5 lines
168 B
Python

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