7 lines
112 B
Python
7 lines
112 B
Python
squares = []
|
|
for value in range(1, 11):
|
|
#square = value ** 2
|
|
squares.append(value ** 2)
|
|
print(squares)
|
|
|