2022-11-13 10:39:28 -08:00

6 lines
82 B
Python

>>> squares = []
>>> for n in range(10**8 + 1):
... squares.append(n)
...
>>>