So imagine I want to go over a loop from 0 to 100, but skipping the odd numbers (so going \"two by two\").
for x in range(0,100): if x%2 == 0: print
for i in range(0, 100, 2): print i
If you are using an IDE, it tells you syntax:
min, max, step(optional)