import turtle
turtle.fillcolor("yellow")
turtle.begin_fill()
for i in range(12):
turtle.circle(-90,90)
turtle.right(120)
turtle.end_fill()
turtle.hideturtle()
turtle.done()
请问你想问什么