import turtle pen=turtle.Pen() pen.fillcolor("red") pen.begin_fill() for i in range(5): pen.forward(400) pen.right(144) pen.end_fill() turtle.done()