Files
lab_names/shapes.py
tgaeta 6511af0849 Created functions to draw a triangle and a rect.
- It's like a variable in that you reference it by name
- Functions break routines up into subprocesses; think recursion. Quick sort
is a perfect example of this.
2025-09-15 13:05:50 -04:00

24 lines
381 B
Python

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