MCQOPTIONS
Saved Bookmarks
| 1. |
The output of the following code will result in a shape similar to the alphabet ___________ import turtle t=turtle.Turtle() t1=turtle.Turtle() t.left(45) t1.left(135) t.forward(100) t1.forward(100) |
| A. | V |
| B. | Inverted V |
| C. | X |
| D. | T |
| Answer» B. Inverted V | |