Initial commit

This commit is contained in:
2024-08-26 23:09:46 +00:00
commit 035cc85c42
8 changed files with 716 additions and 0 deletions

16
square.py Normal file
View File

@@ -0,0 +1,16 @@
from turtle import *
def square(side_length):
forward(side_length)
right(90)
forward(side_length)
right(90)
forward(side_length)
right(90)
forward(side_length)
right(90)
sizes = [20, 40, 60, 80, 100]
for size in sizes:
square(size)