python画懒羊羊源代码
时间: 2023-11-08 09:06:07 浏览: 260
以下是Python画懒羊羊的源代码:
```python
from turtle import *
# 设置画笔
penup()
goto(-100, 0)
pendown()
pensize(10)
pencolor('black')
# 画头
setheading(60)
circle(-50, 120)
circle(-50, 60)
circle(-50, 120)
circle(-50, 60)
# 画身体
setheading(0)
circle(50, 180)
# 画腿
setheading(-90)
circle(50, 90)
forward(50)
setheading(180)
forward(50)
# 画尾巴
setheading(0)
circle(20, 180)
# 完成
done()
```
阅读全文