import turtle
turtle.setup(800,400,0,0)
turtle.bgcolor('white')
turtle.color("yellow")
turtle.fillcolor("red")
turtle.begin_fill()
for i in range(5):
turtle.forward(50)
turtle.right(144)
turtle.end_fill()
turtle.done()

import turtle
turtle.setup(800,400,0,0)
turtle.bgcolor('white')
turtle.color("yellow")
turtle.fillcolor("red")
turtle.begin_fill()
for i in range(5):
turtle.forward(50)
turtle.right(144)
turtle.end_fill()
turtle.done()
