1 from turtle import * 2 fillcolor("red") 3 begin_fill() 4 while True: 5 forward(200) 6 right(144) 7 if abs(pos()) < 1: 8 break 9 end_fill()