python画懒羊羊的代码
时间: 2023-04-04 20:00:27 浏览: 1382
使用python画出一个懒羊羊代码(附详细注释)全
以下是 Python 画懒羊羊的代码:
```
import turtle
# 设置画笔
t = turtle.Pen()
t.speed()
t.pensize(5)
# 画懒羊羊的头
t.fillcolor('white')
t.begin_fill()
t.circle(100)
t.end_fill()
# 画懒羊羊的眼睛
t.penup()
t.goto(-40, 120)
t.pendown()
t.fillcolor('black')
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(-60, 80)
t.pendown()
t.right(60)
t.circle(80, 120)
# 画懒羊羊的身体
t.penup()
t.goto(-100, -50)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(100)
t.end_fill()
# 画懒羊羊的腿
t.penup()
t.goto(-60, -150)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(40, 180)
t.end_fill()
t.penup()
t.goto(60, -150)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(40, 180)
t.end_fill()
# 画懒羊羊的尾巴
t.penup()
t.goto(100, -50)
t.pendown()
t.right(60)
t.circle(80, 120)
# 隐藏画笔
t.hideturtle()
# 等待用户关闭窗口
turtle.done()
```
阅读全文