python運用turtle繪畫哆啦A梦
时间: 2023-06-21 17:05:01 浏览: 78
python 用turtle画哆啦A梦
好的,以下是一个简单的Python程序,使用turtle库绘制哆啦A梦的图案:
```python
import turtle
# 设置画笔
t = turtle.Pen()
t.speed(10)
# 绘制身体
t.color('blue')
t.begin_fill()
t.circle(50)
t.end_fill()
# 绘制胸口
t.up()
t.goto(0, 50)
t.down()
t.color('white')
t.begin_fill()
t.circle(30)
t.end_fill()
# 绘制脸
t.up()
t.goto(0, 110)
t.down()
t.color('blue')
t.begin_fill()
t.circle(20)
t.end_fill()
# 绘制嘴巴
t.up()
t.goto(-20, 100)
t.down()
t.color('black')
t.width(5)
t.right(90)
t.circle(20, 180)
# 绘制眼睛
t.up()
t.goto(-10, 130)
t.down()
t.color('white')
t.begin_fill()
t.circle(5)
t.end_fill()
t.up()
t.goto(10, 130)
t.down()
t.begin_fill()
t.circle(5)
t.end_fill()
# 绘制胡须
t.up()
t.goto(-30, 120)
t.down()
t.color('black')
t.width(2)
t.right(45)
t.forward(40)
t.up()
t.goto(-30, 115)
t.down()
t.right(-90)
t.forward(40)
t.up()
t.goto(-30, 110)
t.down()
t.right(-90)
t.forward(40)
t.up()
t.goto(30, 120)
t.down()
t.right(-45)
t.forward(40)
t.up()
t.goto(30, 115)
t.down()
t.right(-90)
t.forward(40)
t.up()
t.goto(30, 110)
t.down()
t.right(-90)
t.forward(40)
turtle.done()
```
运行以上代码后,就可以看到绘制的哆啦A梦了。你也可以根据自己的喜好进行修改和扩展。
阅读全文