diff --git a/__pycache__/tile.cpython-312.pyc b/__pycache__/tile.cpython-312.pyc new file mode 100644 index 0000000..3b2d5a2 Binary files /dev/null and b/__pycache__/tile.cpython-312.pyc differ diff --git a/__pycache__/tile_grid.cpython-312.pyc b/__pycache__/tile_grid.cpython-312.pyc new file mode 100644 index 0000000..9f7e215 Binary files /dev/null and b/__pycache__/tile_grid.cpython-312.pyc differ diff --git a/square.py b/square.py index f1fb2a2..b5ed1fc 100644 --- a/square.py +++ b/square.py @@ -10,8 +10,17 @@ def square(side_length): forward(side_length) right(90) +sizes = [20, 40, 60, 80, 100] +for size in sizes: + square(20) + penup() + forward(40) + pendown() + sizes = [20, 40, 60, 80, 100] for size in sizes: square(size) + input() +