7 lines
74 B
Python
7 lines
74 B
Python
squares = []
|
|
|
|
for x in range(1,6):
|
|
squares.append(x**2)
|
|
|
|
print(squares)
|