Quick actions

cmd+k|ctrl+k

Navigation

Languages

Making Numerical List

Snippet info

Language

Python

Visibility

public

Author

ericmash53

Created

2026-04-17T12:34:54.826829Z

Updated

2026-04-18T08:01:35.1256Z


# 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)
INFO