In python I usually loop through ranges simply by
for i in range(100): #do something
but now I want to skip a few steps in the loop. Mo
for i in range(0, 100, 10): print(i)
will print 0, 10, 20 ...