Run
start = 4 stop = 9 my_range = range(start, stop + 1) for i in my_range: print(i)
Output