用Python画一个派大星
时间: 2023-11-16 11:04:47 浏览: 301
好的,以下是用Python绘制派大星的代码:
```python
import turtle
# 创建画布和画笔
t = turtle.Turtle()
screen = t.getscreen()
# 绘制身体
t.color('pink')
t.begin_fill()
t.circle(100)
t.end_fill()
# 绘制眼睛
t.penup()
t.goto(-30, 130)
t.pendown()
t.color('white')
t.begin_fill()
t.circle(15)
t.end_fill()
t.penup()
t.goto(30, 130)
t.pendown()
t.begin_fill()
t.circle(15)
t.end_fill()
# 绘制瞳孔
t.penup()
t.goto(-30, 130)
t.pendown()
t.color('black')
t.begin_fill()
t.circle(5)
t.end_fill()
t.penup()
t.goto(30, 130)
t.pendown()
t.begin_fill()
t.circle(5)
t.end_fill()
# 绘制鼻子
t.penup()
t.goto(0, 100)
t.pendown()
t.color('black')
t.begin_fill()
t.circle(10)
t.end_fill()
# 绘制嘴巴
t.penup()
t.goto(-50, 60)
t.pendown()
t.color('red')
t.setheading(-60)
t.circle(70, 120)
# 绘制手臂
t.penup()
t.goto(70, 0)
t.pendown()
t.color('pink')
t.pensize(20)
t.setheading(-160)
t.circle(80, 80)
t.penup()
t.goto(-70, 0)
t.pendown()
t.setheading(20)
t.circle(-80, 80)
# 绘制腿
t.penup()
t.goto(0, -100)
t.pendown()
t.color('pink')
t.pensize(25)
t.setheading(-90)
t.forward(60)
# 隐藏画笔
t.hideturtle()
# 点击关闭按钮退出程序
screen.exitonclick()
```
运行上述代码即可绘制出一个可爱的派大星!
阅读全文