python:画懒羊羊
时间: 2023-11-08 09:04:56 浏览: 88
使用python画出一个懒羊羊代码(附详细注释)全
要画懒羊羊,可以使用Python的turtle库来实现。以下是一个简单的示例代码:
```python
import turtle
# 设置画笔
t = turtle.Pen()
t.pensize(4)
t.speed(0)
# 画头
t.fillcolor('white')
t.begin_fill()
t.circle(80)
t.end_fill()
# 画眼睛
t.penup()
t.goto(-30, 100)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(30, 100)
t.pendown()
t.begin_fill()
t.circle(20)
t.end_fill()
# 画嘴巴
t.penup()
t.goto(-50, 60)
t.pendown()
t.right(60)
t.circle(70, 120)
# 画身体
t.penup()
t.goto(-100, -50)
t.pendown()
t.fillcolor('white')
t.begin_fill()
for i in range(2):
t.forward(200)
t.circle(50, 180)
t.end_fill()
# 画腿
for i in range(2):
t.penup()
t.goto(-80 + i * 160, -50)
t.pendown()
t.right(30)
t.forward(100)
t.right(120)
t.forward(100)
# 画尾巴
t.penup()
t.goto(100, -50)
t.pendown()
t.right(60)
t.circle(70, 120)
# 隐藏画笔
t.hideturtle()
# 显示窗口
turtle.mainloop()
```
阅读全文