import turtle# 设置填充颜色turtle.fillcolor("red")# 开始填充turtle.begin_fill()# 画个圆turtle.circle(50)# 结束填充turtle.end_fill()turtle.done()
import turtle# 设置填充颜色turtle.fillcolor("red")# 开始填充turtle.begin_fill()# 画个圆turtle.circle(50)# 结束填充turtle.end_fill()turtle.done()