import turtle
turtle.setup(660,440,10,10)
turtle.bgcolor('red')
turtle.pencolor('yellow')
def wjx(change):
turtle.fillcolor('yellow')
turtle.begin_fill()
for i in range(5):
turtle.forward(change)
turtle.right(144)
turtle.end_fill()
def move(x,y):
turtle.penup()
turtle.goto(x,y)
turtle.pendown()
move(-210,110)
wjx(110)
move(-100,160)
wjx(40)
move(-70,120)
wjx(40)
move(-70,80)
wjx(40)
move(-100,40)
wjx(40)
turtle.done()