+ 1
Counting by 15s
Iâm trying to figure out how to count by numbers to a defined point. (Example: count by 15s to 360) anyone know how to set this up in python?
3 Answers
+ 5
for x in range(15, 361, 15):
print(x)
+ 2
Thanks guys
Iâm trying to figure out how to count by numbers to a defined point. (Example: count by 15s to 360) anyone know how to set this up in python?