Curso_Intensivo_de_PYTHON/chapter_04/squares.py
2023-06-02 17:22:53 +02:00

2 lines
62 B
Python

squares = [value**2 for value in range(1, 11)]
print(squares)