Files
lab_names/shapes.py
2025-09-25 09:56:09 -04:00

18 lines
271 B
Python

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