check point 2

This commit is contained in:
jcaley
2025-10-01 09:39:14 -04:00
parent 6656dacd9f
commit 67e122b370
2 changed files with 15 additions and 15 deletions

View File

@@ -1,14 +1,9 @@
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)
for i in range(4):
forward(side_length)
right(90)
sizes = [20, 40, 60, 80, 100]
for size in sizes: