6 lines
89 B
Python
6 lines
89 B
Python
#for value in range(1, 5):
|
|
#print(value)
|
|
|
|
numbers = list(range(1, 6))
|
|
print(numbers)
|