a.goto(-200,100)
a.color("yellow")
a.speed(25)
def star (turtle,size):
if size<=10:
return
else:
turtle.begin_fill()
for i in range(5):
turtle.forward(size)
star(turtle,size/3)
turtle.left(216)
turtle.end_fill()
star(a,360)
turtle.done()
#Fonte: Código tirado no seguinte código