[Solved] Python 3.4 i want creat list 0,24,48,…….6168 [closed]


Yes, you will have to overload the range function

for i in range(0,n,24):
    print(i)


Output:
0
24
48
72...

0

solved Python 3.4 i want creat list 0,24,48,…….6168 [closed]