用turtle绘制文字
时间: 2023-11-19 07:06:07 浏览: 131
python中turtle绘制滚动字幕
以下是使用turtle库在Python中绘制文字的示例代码:
```python
import turtle
# 创建画布和画笔
pen = turtle.Turtle()
# 设置字体和大小
pen.write("Hello, World!", font=("Arial", 16, "normal"))
# 隐藏画笔
pen.hideturtle()
# 等待用户关闭窗口
turtle.done()
```
运行此代码后,将在画布上绘制“Hello, World!”文本。您可以根据需要更改文本内容、字体、大小和位置。
阅读全文