用Python使用turtle库绘制一幅图画,画一个小猪佩奇
时间: 2023-07-20 13:38:38 浏览: 92
好的,我可以为您演示如何使用 Python 的 turtle 库绘制一幅小猪佩奇的图画。以下是代码:
```python
import turtle
# 创建窗口
screen = turtle.Screen()
screen.setup(500, 500)
# 画头部
t = turtle.Turtle()
t.penup()
t.goto(-50, 50)
t.pendown()
t.fillcolor('#f7d4d4')
t.begin_fill()
t.circle(50)
t.end_fill()
# 画耳朵
t.penup()
t.goto(-80, 120)
t.pendown()
t.fillcolor('#f7d4d4')
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(-20, 120)
t.pendown()
t.fillcolor('#f7d4d4')
t.begin_fill()
t.circle(20)
t.end_fill()
# 画眼睛
t.penup()
t.goto(-35, 70)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(8)
t.end_fill()
t.penup()
t.goto(-15, 70)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(8)
t.end_fill()
t.penup()
t.goto(-35, 70)
t.pendown()
t.fillcolor('#333333')
t.begin_fill()
t.circle(4)
t.end_fill()
t.penup()
t.goto(-15, 70)
t.pendown()
t.fillcolor('#333333')
t.begin_fill()
t.circle(4)
t.end_fill()
# 画鼻子
t.penup()
t.goto(-10, 50)
t.pendown()
t.fillcolor('pink')
t.begin_fill()
t.circle(10)
t.end_fill()
# 画嘴巴
t.penup()
t.goto(-30, 30)
t.pendown()
t.pencolor('pink')
t.pensize(5)
t.right(45)
t.circle(20, -90)
t.penup()
t.goto(-30, 30)
t.pendown()
t.right(90)
t.circle(20, -90)
# 画身体
t.penup()
t.goto(-70, -20)
t.pendown()
t.fillcolor('#f7d4d4')
t.begin_fill()
t.right(45)
t.forward(100)
t.right(90)
t.forward(70)
t.right(90)
t.forward(100)
t.right(90)
t.forward(70)
t.end_fill()
# 画手臂
t.penup()
t.goto(-70, -20)
t.pendown()
t.fillcolor('#f7d4d4')
t.begin_fill()
t.right(45)
t.forward(50)
t.right(90)
t.forward(20)
t.right(90)
t.forward(50)
t.right(90)
t.forward(20)
t.end_fill()
t.penup()
t.goto(20, -20)
t.pendown()
t.fillcolor('#f7d4d4')
t.begin_fill()
t.right(180)
t.forward(50)
t.right(90)
t.forward(20)
t.right(90)
t.forward(50)
t.right(90)
t.forward(20)
t.end_fill()
# 画腿
t.penup()
t.goto(-40, -90)
t.pendown()
t.fillcolor('#f7d4d4')
t.begin_fill()
t.right(45)
t.forward(30)
t.right(90)
t.forward(50)
t.right(90)
t.forward(30)
t.right(90)
t.forward(50)
t.end_fill()
t.penup()
t.goto(10, -90)
t.pendown()
t.fillcolor('#f7d4d4')
t.begin_fill()
t.right(180)
t.forward(30)
t.right(90)
t.forward(50)
t.right(90)
t.forward(30)
t.right(90)
t.forward(50)
t.end_fill()
# 隐藏画笔
t.hideturtle()
# 保持窗口不关闭
turtle.done()
```
当您运行这段代码时,将会弹出一个窗口,并在其中绘制出小猪佩奇的图画。希望这能对您有所帮助!
阅读全文