import turtle
turtle.bgcolor("black")
turtle.color("yellow","red")
turtle.penup()
turtle.goto(-65,65)
turtle.pendown()
turtle.begin_fill()
for i in range(5):
turtle.left(72)
turtle.fd(200)
turtle.right(144)
turtle.fd(200)
turtle.end_fill()
turtle.hideturtle()



