画草莓熊的python代码
时间: 2023-11-12 16:59:48 浏览: 330
python草莓熊代码
好的,以下是画草莓熊的 Python 代码:
```python
import turtle
# 设置画笔
t = turtle.Turtle()
t.pensize(5)
t.speed(10)
# 画头
t.penup()
t.goto(0, 100)
t.pendown()
t.circle(50)
# 画耳朵
t.penup()
t.goto(-60,160)
t.pendown()
t.right(30)
t.circle(60, 60)
t.left(120)
t.circle(60, 60)
# 画眼睛
t.penup()
t.goto(-20, 140)
t.pendown()
t.dot(20)
t.penup()
t.goto(20, 140)
t.pendown()
t.dot(20)
# 画鼻子
t.penup()
t.goto(0, 100)
t.pendown()
t.dot(30)
# 画嘴巴
t.penup()
t.goto(-40, 80)
t.pendown()
t.right(90)
t.circle(40,180)
# 画身体
t.penup()
t.goto(-100, -50)
t.pendown()
t.begin_fill()
t.color('pink')
t.circle(100)
t.end_fill()
# 画手
t.penup()
t.goto(-150, 0)
t.pendown()
t.begin_fill()
t.color('white')
t.circle(50)
t.end_fill()
# 画脚
t.penup()
t.goto(-50, -150)
t.pendown()
t.begin_fill()
t.color('white')
t.circle(50)
t.end_fill()
# 隐藏画笔
t.hideturtle()
# 等待点击关闭窗口
turtle.done()
```
阅读全文