# 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