python画蜡笔小新
时间: 2023-11-16 08:02:10 浏览: 182
使用Python的turtle模块绘制蜡笔小新图案
5星 · 资源好评率100%
Python可以使用turtle库来画图形,包括蜡笔小新。下面是一个简单的例子:
```python
import turtle
# 设置画笔
t = turtle.Pen()
t.pensize(5)
t.speed(10)
# 画蜡笔小新的头
t.fillcolor('pink')
t.begin_fill()
t.circle(100)
t.end_fill()
# 画蜡笔小新的眼睛
t.penup()
t.goto(-40, 120)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(40, 120)
t.pendown()
t.begin_fill()
t.circle(20)
t.end_fill()
# 画蜡笔小新的鼻子
t.penup()
t.goto(0, 80)
t.pendown()
t.fillcolor('red')
t.begin_fill()
t.circle(10)
t.end_fill()
# 画蜡笔小新的嘴巴
t.penup()
t.goto(-60, 60)
t.pendown()
t.right(45)
t.circle(80, 90)
# 画蜡笔小新的身体
t.penup()
t.goto(-100, -100)
t.pendown()
t.fillcolor('blue')
t.begin_fill()
for i in range(2):
t.forward(200)
t.circle(50, 180)
t.end_fill()
# 画蜡笔小新的手
t.penup()
t.goto(-150, -100)
t.pendown()
t.fillcolor('pink')
t.begin_fill()
t.right(45)
t.forward(70)
t.right(90)
t.forward(70)
t.right(45)
t.circle(50, 90)
t.end_fill()
t.penup()
t.goto(150, -100)
t.pendown()
t.fillcolor('pink')
t.begin_fill()
t.left(45)
t.forward(70)
t.left(90)
t.forward(70)
t.left(45)
t.circle(-50, 90)
t.end_fill()
# 画蜡笔小新的腿
t.penup()
t.goto(-50, -200)
t.pendown()
t.fillcolor('blue')
t.begin_fill()
t.right(45)
t.forward(70)
t.right(90)
t.forward(70)
t.right(45)
t.circle(50, 90)
t.end_fill()
t.penup()
t.goto(50, -200)
t.pendown()
t.fillcolor('blue')
t.begin_fill()
t.left(45)
t.forward(70)
t.left(90)
t.forward(70)
t.left(45)
t.circle(-50, 90)
t.end_fill()
# 隐藏画笔
t.hideturtle()
# 等待用户关闭窗口
turtle.done()
```
阅读全文