

MCQOPTIONS
Saved Bookmarks
1. |
Fill in the blank such that the code shown below results in the formation of an inverted, equilateral triangle. import turtle t=turtle.Pen() for i in range(0,3): t.forward(150) t.right(_____) |
A. | -60 |
B. | 120 |
C. | -120 |
D. | 60 |
Answer» C. -120 | |