# Using the range() dynamic
for value in range(1,7):
print(value)
print() # Space
# Another Example of using range () Dynamic
Numbers = [1,2,3,4,5]
for Number in range(1,6):
print(Number)
print() # Space
# Another Example of using range() Dynamic
Shopping_Numbers = [1,2,3,4,5,6,7,8]
for Shopping in range(5):
print(Shopping)