Add a method to the Turtle class to draw a letter.
Note: Each individual method ends ensuring the turtle is looking straight up so that it will work for the assumptions made by the next method.
```
class MyTurtle(Turtle):
#Assumes the turtle starts looking straight up
def drawM(self, size=60):
self.forward(size)
self.turn(150)
self.forward(size)
self.turn(-120)
self.forward(size)
self.turn(150)
self.forward(size)
self.turn(180)
```
You might also like to view...
A local variable lets you store a value within a(n) ____ for later use.
A. parameter B. method C. argument D. property
What problems are unique to the management of mounted file systems?
What will be an ideal response?
One of the most important parts of your work as an expert witness is ________ for the trial
Fill in the blank(s) with correct word
Because "A" is always less than "B", alphabetic sorts are ____ sorts.
A. descending B. reversing C. ascending D. downward