In this post-lab you will demonstrate your understanding of writing functions using the turtle module.
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.
>>> import stick_figure >>> stick_figure.draw_stick_figure(x=0, y=0) ...
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.