Files
lab_names/shapes.py
2025-09-24 09:52:11 -04:00

14 lines
220 B
Python

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