Say I want to loop from 0 to 100 but with a step of 1/2. If you try
for i in range(0, 100, 0.5): whatever
for x in map(lambda i: i * 0.5, range(0,200)): #Do something with x