使用turtle画个图,怎么把图内部填充上颜色
时间: 2023-03-22 16:01:43 浏览: 162
使用Python的turtle模块画图
要在turtle画的图形内部填充颜色,可以使用turtle库中的fill函数和begin_fill函数以及end_fill函数。例如,下面的代码将绘制一个红色的正方形并填充它的内部:
```python
import turtle
t = turtle.Turtle()
t.begin_fill() # 开始填充
t.color("red")
t.forward(100)
t.right(90)
t.forward(100)
t.right(90)
t.forward(100)
t.right(90)
t.forward(100)
t.end_fill() # 结束填充
turtle.done()
```
在begin_fill和end_fill之间的所有绘图操作将会填充指定的颜色。你可以替换上述代码中的红色颜色值以使用不同的颜色。
阅读全文