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()
turtle画太阳
原文:https://www.cnblogs.com/dks0313/p/15086792.html