想要绘制出正三角形,以下代码的横线处需要填写?( )
import turtle
pen=turtle.Turtle()
for i in range(3):
pen.forward(50)
pen.left(______)
60
90
120
150