example02.py 68 B

1234
  1. nums = []
  2. for i in range(100000):
  3. nums.insert(0, i)
  4. print(nums)