用py海龟画一个米老鼠
时间: 2024-05-01 17:18:54 浏览: 52
好的,我可以帮你用Python中的turtle模块来画一个米老鼠,以下是代码:
```python
import turtle
# 创建海龟对象
t = turtle.Turtle()
# 画一个米老鼠的头部
t.circle(100)
# 移动到左边的耳朵位置
t.penup()
t.goto(-60, 200)
t.pendown()
# 画左边的耳朵
t.begin_fill()
t.circle(40)
t.end_fill()
# 移动到右边的耳朵位置
t.penup()
t.goto(60, 200)
t.pendown()
# 画右边的耳朵
t.begin_fill()
t.circle(40)
t.end_fill()
# 移动到左边的眼睛位置
t.penup()
t.goto(-40, 120)
t.pendown()
# 画左边的眼睛
t.begin_fill()
t.circle(20)
t.end_fill()
# 移动到右边的眼睛位置
t.penup()
t.goto(40, 120)
t.pendown()
# 画右边的眼睛
t.begin_fill()
t.circle(20)
t.end_fill()
# 移动到鼻子位置
t.penup()
t.goto(0, 80)
t.pendown()
# 画鼻子
t.begin_fill()
t.circle(30)
t.end_fill()
# 移动到嘴巴位置
t.penup()
t.goto(-50, 50)
t.pendown()
# 画嘴巴
t.right(90)
t.circle(50, 180)
t.left(90)
# 隐藏海龟对象
t.hideturtle()
# 等待画布关闭
turtle.done()
```
希望能帮到你!
阅读全文