Vidyalelo
Python · Q164

Module in Python

Programming · Python · question 164

Q164

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(_____)

A.
-60
B.
120
Answer
C.
-120
D.
60

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board