import turtle as tl
tl.pensize(10) #画笔大小
tl.color("yellow") #画笔颜色
tl.fillcolor("red") #填充颜色
tl.begin_fill()
tl.right(144)
tl.forward(200)
tl.right(144)
tl.forward(200)
tl.left(72)
tl.forward(200)
tl.right(144)
tl.forward(200)
tl.left(72)
tl.forward(200)
tl.right(144)
tl.forward(200)
tl.left(72)
tl.forward(200)
tl.right(144)
tl.forward(200)
tl.left(72)
tl.forward(200)
tl.right(144)
tl.forward(200)
tl.end_fill()