Files
pythonkurs/teil18/squares_for.py

7 lines
74 B
Python

squares = []
for x in range(1,6):
squares.append(x**2)
print(squares)