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)
```

Computer Science & Information Technology

You might also like to view...

Because dates are stored as ________, you can use dates in calculations

Fill in the blank(s) with correct word

Computer Science & Information Technology

A(n) Emphasis animation causes an object visible on the slide to have an effect. _________________________

Answer the following statement true (T) or false (F)

Computer Science & Information Technology