用turtle库画出自己的名字。
时间: 2024-09-18 19:17:52 浏览: 29
一些基于Python的turtle库画出的图画
5星 · 资源好评率100%
使用Python的turtle库可以轻松地绘制图形,包括文字。以下是一个简单的例子,演示如何用turtle画出自己的名字。首先,你需要安装turtle库,如果还没有安装,可以在命令行输入`pip install turtle`。
```python
import turtle
# 设置画笔
window = turtle.Screen()
t = turtle.Turtle()
t.speed(0) # 设置更快的绘画速度
def draw_char(char):
if char == 'A':
t.forward(50)
t.right(90)
elif char == 'M':
t.forward(75)
t.right(90)
elif char == 'Y':
t.forward(60)
t.right(90)
else:
t.forward(50)
# 输入你的名字
name = input("请输入你的名字:")
for c in name:
draw_char(c)
# 结束并隐藏画笔
t.hideturtle()
window.exitonclick()
阅读全文