for i in range(start, end): dosomething() #The i is an iteration variable that you can replace by anytthing. You do not need to define it.
for i in range(0,10,2): print(i)