Files
lab_names/shapes.py
2025-09-24 09:49:23 -04:00

23 lines
367 B
Python

# shapes.py
# ---------
# By MWC contributors
from turtle import *
def triangle(side_length):
forward(side_length)
right(120)
forward(side_length)
right(120)
forward(side_length)
right(120)
def rectangle(height, width):
forward(height)
right(90)
forward(width)
right(90)
forward(height)
right(90)
forward(width)