用Python使用turtle库绘制一幅图画,画一幅老虎
时间: 2023-07-20 08:38:39 浏览: 287
好的,我可以为您演示如何使用 Python 的 turtle 库绘制一幅老虎的图画。以下是代码:
```python
import turtle
# 创建窗口
screen = turtle.Screen()
screen.setup(500, 500)
# 创建画笔
t = turtle.Turtle()
# 画身体
t.penup()
t.goto(-100, 0)
t.pendown()
t.fillcolor('orange')
t.begin_fill()
t.circle(60)
t.end_fill()
# 画头部
t.penup()
t.goto(40, 60)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(30)
t.end_fill()
t.penup()
t.goto(60, 90)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(10)
t.end_fill()
# 画耳朵
t.penup()
t.goto(30, 100)
t.pendown()
t.fillcolor('orange')
t.begin_fill()
t.right(60)
t.forward(20)
t.right(120)
t.forward(20)
t.right(120)
t.forward(20)
t.end_fill()
t.penup()
t.goto(50, 110)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(5)
t.end_fill()
# 画眼睛
t.penup()
t.goto(10, 50)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(15)
t.end_fill()
t.penup()
t.goto(10, 55)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(5)
t.end_fill()
# 画鼻子和嘴巴
t.penup()
t.goto(-10, 10)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(10)
t.end_fill()
t.penup()
t.goto(-30, -20)
t.pendown()
t.right(30)
t.circle(30, -60)
# 画尾巴
t.penup()
t.goto(-100, -20)
t.pendown()
t.fillcolor('orange')
t.begin_fill()
t.right(60)
t.forward(40)
t.right(120)
t.forward(40)
t.right(120)
t.forward(40)
t.end_fill()
# 隐藏画笔
t.hideturtle()
# 保持窗口不关闭
turtle.done()
```
当您运行这段代码时,将会弹出一个窗口,并在其中绘制出一个老虎的图画。希望这能对您有所帮助!
阅读全文