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() #填充结束
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() #填充结束