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