Fill in the blank such that the following Python code 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(_____)
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: Option B

Join The Discussion