import turtle def mygoto(x, y): turtle.up() turtle.goto(x,y) turtle.down() def drawwu(r): turtle.begin_fill() for i in range(5): turtle.forward(r) turtle.left(144) turtle.end_fill() turtle.setup(600,400,0,0) turtle.color("yellow") turtle.bgcolor('red') turtle.fillcolor("yellow") mygoto(-250,80) drawwu(120) mygoto(-120,170) drawwu(30) mygoto(-120,50) drawwu(30) mygoto(-80,130) drawwu(30) mygoto(-80,90) drawwu(30) turtle.hideturtle() turtle.done()