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
Use the step argument (the last, optional):
for x in range(0, 100, 2): print(x)
Note that if you actually want to keep the odd numbers, it becomes:
for x in range(1, 100, 2): print(x)
Range is a very powerful feature.