Run
my_range = range(4, 9) i = my_range.start while i < my_range.stop: print(i) i = i + my_range.step
Output