2 lines
62 B
Python
2 lines
62 B
Python
squares = [value**2 for value in range(1, 11)]
|
|
print(squares)
|
squares = [value**2 for value in range(1, 11)]
|
|
print(squares)
|