python的turtle画一个煎饼
时间: 2023-07-04 13:28:10 浏览: 132
使用Python的turtle模块画图
好的,以下是使用Python的turtle库绘制煎饼的代码:
```python
import turtle
# 设置画笔
turtle.penup()
turtle.goto(-50, 0)
turtle.pendown()
turtle.pensize(10)
# 绘制煎饼底部
turtle.fillcolor("#8B4513")
turtle.begin_fill()
turtle.circle(100)
turtle.end_fill()
# 绘制煎饼上的圆点
turtle.penup()
turtle.goto(-30, 60)
turtle.pendown()
turtle.fillcolor("#FFC125")
turtle.begin_fill()
turtle.circle(20)
turtle.end_fill()
turtle.penup()
turtle.goto(30, 60)
turtle.pendown()
turtle.fillcolor("#FFC125")
turtle.begin_fill()
turtle.circle(20)
turtle.end_fill()
# 完成绘制
turtle.done()
```
运行代码后,会在窗口中显示一个绘制好的煎饼。你可以根据需要修改代码中的参数,例如改变煎饼的颜色、大小等。
阅读全文