turtle画太阳_ide

 

 

from turtle import *
hideturtle()
for i in range(12):
    color("red")
    circle(120, 30)
    color("yellow")
    begin_fill()
    right(60)
    fd(80)
    right(60)
    fd(80)
    right(120)
    fd(80)
    right(60)
    fd(80)
    right(60)
    end_fill()
done()