Files
lab_iteration/square.py
chuttenmaier 01378deaa5 Nah
i understand all the ranges
chances are i wont need people reading my program but if they do ill be there guideing them
2025-09-24 09:31:27 -04:00

11 lines
191 B
Python

from turtle import *
def square(side_length):
for i in range(4):
forward(side_length)
right(90)
sizes = [20, 40, 60, 80, 100]
for size in sizes:
square(size)
input()