Files
lab_names/shapes.py
2025-09-24 09:55:46 -04:00

17 lines
272 B
Python

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