python画动漫人物
时间: 2023-11-25 15:51:49 浏览: 155
以下是使用Python turtle库绘制动漫人物的示例代码,你可以根据自己的需要进行修改和调整:
```python
import turtle
# 设置画笔
t = turtle.Pen()
t.pensize(2)
t.speed(10)
# 绘制头部
t.penup()
t.goto(0, 100)
t.pendown()
t.circle(100)
# 绘制眼睛
t.penup()
t.goto(-40, 140)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(40, 140)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(-30, 150)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(10)
t.end_fill()
t.penup()
t.goto(30, 150)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(10)
t.end_fill()
# 绘制嘴巴
t.penup()
t.goto(-60, 80)
t.pendown()
t.right(45)
t.circle(80, 90)
# 绘制身体
t.penup()
t.goto(0, 0)
t.pendown()
t.fillcolor('red')
t.begin_fill()
t.circle(150, 180)
t.right(90)
t.forward(300)
t.right(90)
t.circle(150, 180)
t.end_fill()
# 绘制手臂
t.penup()
t.goto(-150, 0)
t.pendown()
t.fillcolor('red')
t.begin_fill()
t.right(45)
t.forward(100)
t.right(90)
t.forward(50)
t.right(90)
t.forward(100)
t.right(135)
t.forward(70)
t.end_fill()
t.penup()
t.goto(150, 0)
t.pendown()
t.fillcolor('red')
t.begin_fill()
t.left(45)
t.forward(100)
t.left(90)
t.forward(50)
t.left(90)
t.forward(100)
t.left(135)
t.forward(70)
t.end_fill()
# 绘制腿
t.penup()
t.goto(-50, -300)
t.pendown()
t.fillcolor('red')
t.begin_fill()
t.right(45)
t.forward(100)
t.right(90)
t.forward(50)
t.right(90)
t.forward(100)
t.right(135)
t.forward(70)
t.end_fill()
t.penup()
t.goto(50, -300)
t.pendown()
t.fillcolor('red')
t.begin_fill()
t.left(45)
t.forward(100)
t.left(90)
t.forward(50)
t.left(90)
t.forward(100)
t.left(135)
t.forward(70)
t.end_fill()
# 隐藏画笔
t.hideturtle()
# 等待用户关闭窗口
turtle.done()
```
阅读全文