generated from mwc/lab_names
14 lines
220 B
Python
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
|