python画巴斯光年
时间: 2023-11-11 22:00:07 浏览: 104
python画画
5星 · 资源好评率100%
要画巴斯光年,可以使用Python中的turtle库来实现。以下是一个简单的例子:
```python
import turtle
# 设置画笔
t = turtle.Turtle()
t.speed(10)
t.pensize(5)
# 画身体
t.color('green', 'lime')
t.begin_fill()
for i in range(4):
t.forward(100)
t.right(90)
t.end_fill()
# 画胸甲
t.penup()
t.goto(-50, 50)
t.pendown()
t.color('red', 'crimson')
t.begin_fill()
for i in range(3):
t.forward(100)
t.left(120)
t.end_fill()
# 画头部
t.penup()
t.goto(0, 150)
t.pendown()
t.color('purple', 'violet')
t.begin_fill()
t.circle(50)
t.end_fill()
# 画眼睛
t.penup()
t.goto(-20, 180)
t.pendown()
t.color('white', 'white')
t.begin_fill()
t.circle(15)
t.end_fill()
t.penup()
t.goto(-20, 190)
t.pendown()
t.color('black', 'black')
t.begin_fill()
t.circle(5)
t.end_fill()
# 完成
turtle.done()
```
阅读全文