< Back

Post Lab 6

In this post-lab you will demonstrate your understanding of writing functions using the turtle module.

Details

Create a Python program that uses the turtle module to draw a crowd of stick figure people to the turtle window. For our definition, a crowd will consist of at least 5 stick figures. Create a function draw_stick_figure(x, y) that draws a stick figure person in the specified location on the turtle window.

Example

>>> import stick_figure
>>> stick_figure.draw_stick_figure(x=0, y=0)
...
Turtle Graphics Triangle

Submission

Submissions for post labs are to be done via the inquire system. Go to http://inquire.roanoke.edu/ You should see a section for post labs. Submit your .py file to the appropriate post lab location.