python turtle 行笔速度函数
时间: 2023-11-17 08:56:41 浏览: 73
turtle for python
4星 · 用户满意度95%
Python turtle库中的行笔速度函数是speed(speed),其中speed为一个整数,表示行笔速度的范围为0-10,其中0为最快,10为最慢。具体用法如下:
```python
import turtle
t = turtle.Turtle()
t.speed(5) # 设置行笔速度为5
```
阅读全文