generated from mwc/lab_names
12 lines
145 B
Python
12 lines
145 B
Python
# shapes.py
|
|
# ---------
|
|
# By MWC contributors
|
|
|
|
from turtle import *
|
|
|
|
def triangle(side_length):
|
|
pass
|
|
|
|
def rectangle(height, width):
|
|
pass
|