Initial commit

This commit is contained in:
2025-08-26 22:03:11 +00:00
commit 03ff9d72a0
9 changed files with 225 additions and 0 deletions

17
square.py Normal file
View File

@@ -0,0 +1,17 @@
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)
input()