import turtle as t
t.color("yellow") #填黄色的线t.fillcolor("yellow") #填充黄色的、填进五星红旗t.begin_fill() #开始填充for i in range(5): t.forward(100) #走100 t.right(144) #右转144度t.end_fill() #填充结束