5 lines
168 B
Python
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) |