python turtle 画懒羊羊
时间: 2023-11-09 16:03:22 浏览: 150
Python之turtle使用:画粽子
好的,以下是使用 Python turtle 模块画懒羊羊的代码:
```python
import turtle
# 设置画笔
t = turtle.Pen()
t.pensize(5)
t.speed(2)
# 画头
t.fillcolor('white')
t.begin_fill()
t.circle(80)
t.end_fill()
# 画眼睛
t.penup()
t.goto(-30, 120)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(15)
t.end_fill()
t.penup()
t.goto(30, 120)
t.pendown()
t.begin_fill()
t.circle(15)
t.end_fill()
# 画嘴巴
t.penup()
t.goto(-50, 80)
t.pendown()
t.right(60)
t.circle(70, 120)
# 画身体
t.penup()
t.goto(-100, -20)
t.pendown()
.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, -70)
t.pendown()
t.right(30)
t.forward(100)
t.right(120)
t.forward(100)
# 画尾巴
t.penup()
t.goto(100, -20)
t.pendown()
t.right(60)
t.circle(70, 120)
turtle.done()
```
阅读全文