Python代码执行后,将绘制一个边长为100的等边三角形,且填充颜色为红色。( )
import turtle
turtle.fillcolor("red")
turtle.begin_fill()
turtle.circle(100,steps=3)
turtle.end_fill()