6 lines
82 B
Python
6 lines
82 B
Python
>>> squares = []
|
|
>>> for n in range(10**8 + 1):
|
|
... squares.append(n)
|
|
...
|
|
>>>
|