利用python库中的turtle画自己的名字
时间: 2023-06-09 21:06:44 浏览: 117
python turtle 绘图动画源码
好的,您可以尝试以下代码来利用Python库中的turtle画出您的名字:
```python
import turtle
# 创建一个turtle对象,可以改变参数来自定义笔的形状和颜色等属性
pen = turtle.Turtle()
pen.color("blue")
pen.shape("turtle")
# 定义一个函数来画出字母"J"
def draw_J():
pen.penup()
pen.goto(0,100)
pen.pendown()
pen.right(90)
pen.forward(50)
pen.right(90)
pen.circle(25,180)
# 定义一个函数来画出字母"E"
def draw_E():
pen.penup()
pen.goto(75,100)
pen.pendown()
pen.left(90)
pen.forward(50)
pen.backward(50)
pen.right(90)
pen.forward(40)
pen.left(90)
pen.forward(50)
pen.backward(50)
# 调用函数来画出名字
draw_J()
draw_E()
# 隐藏turtle笔的形状
pen.hideturtle()
# 等待用户点击窗口才关闭
turtle.done()
```
运行以上代码后,您就可以在窗口中看到类似于下面的效果,即画出了名字 "JE":
![JE](https://img-blog.csdnimg.cn/20211208001310928.png)
阅读全文