Question: Drawing: (25 points) For this project, you will write a Python project called drawing.py . You will use the Python Turtle module: fromturtle import* to
Drawing: (25 points)
For this project, you will write a Python project called drawing.py. You will use the Python Turtle module:
| fromturtle import* |
to create your own drawing. Write a function called draw that draws your drawing of your choice. The function should take one parameter and that is a turtle. The function must contain at least 5 lines of code.
Get creative!Do not just use examples that we have done in class. Doing so will result in the loss of points. You may use any methods from the turtle module: https://docs.python.org/2/library/turtle.html
Style Guidelines:
In your mainfunction:
Create a new turtle
Set the turtles speed to 0
Call your draw function
Use a minium drawing window of 500x500 (Could be larger if need be)
Include the input to stop the window from closing after drawing is finished
| Press enter to end |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
