5 lines
68 B
Python
5 lines
68 B
Python
nums = []
|
|
for i in range(100000):
|
|
nums.insert(0, i)
|
|
print(nums)
|