1-5.py 186 Bytes Edit 1 2 3 4 5 6 7 8 9 10 import turtle pen=turtle.Pen() pen.shape("turtle") pen.fillcolor("red") pen.begin_fill() for i in range(5): pen.forward(100) pen.left(144) pen.end_fill() turtle.done()