+ 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 Respostas
+ 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?