pytjon画草莓熊的代码
时间: 2023-11-21 09:53:03 浏览: 107
以下是使用Python Turtle库画草莓熊的代码示例:
```python
import turtle
# 设置画笔
t = turtle.Turtle()
t.speed(10)
t.pensize(3)
# 画草莓
t.penup()
t.goto(-100, 100)
t.pendown()
t.fillcolor("red")
t.begin_fill()
t.circle(50)
t.end_fill()
# 画草莓叶子
t.penup()
t.goto(-70, 150)
t.pendown()
t.fillcolor("green")
t.begin_fill()
t.right(120)
t.forward(60)
t.right(120)
t.forward(60)
t.right(120)
t.forward(60)
t.end_fill()
# 画熊头
t.penup()
t.goto(50, 100)
t.pendown()
t.fillcolor("#8B4513")
t.begin_fill()
t.circle(50)
t.end_fill()
# 画熊耳朵
t.penup()
t.goto(0, 200)
t.pendown()
t.fillcolor("#8B4513")
t.begin_fill()
t.right(45)
t.forward(50)
t.right(90)
t.forward(50)
t.right(135)
t.forward(70)
t.end_fill()
# 画熊眼睛
t.penup()
t.goto(20, 150)
t.pendown()
t.fillcolor("white")
t.begin_fill()
t.circle(20)
t.end_fill()
# 画熊鼻子
t.penup()
t.goto(40, 120)
t.pendown()
t.fillcolor("black")
t.begin_fill()
t.circle(10)
t.end_fill()
# 画熊嘴巴
t.penup()
t.goto(20, 100)
t.pendown()
t.right(90)
t.forward(20)
t.right(90)
t.forward(40)
t.right(90)
t.forward(20)
# 隐藏画笔
t.hideturtle()
# 等待用户关闭窗口
turtle.done()
```
阅读全文