Run
my_range = range(4, 9) for value in my_range: print(value, end=" ") print()
Output