import turtle
def circle(x,y,r,color):
turtle.goto(x,y)
turtle.color(color,color)
turtle.begin_fill()
turtle.circle(r)
turtle.end_fill()
def wjx(x,y,l,color):
turtle.goto(x,y)
turtle.color(color, color)
turtle.begin_fill()
for i in range(5):
turtle.forward(l)
turtle.right(144)
turtle.end_fill()
circle(0,-200,200,'red')
circle(0,-150,150,'white')
circle(0,-100,100,'red')
circle(0,-50,50,'blue')
wjx(-40,12,90,"white")
项目描述
由 百花 于
2020-10-28 创建




