用法:
turtle.speed(speed=None)
speed- 0..10 范围内的整数或速度字符串(见下文)
参数:
将 turtle 的速度设置为 0..10 范围内的整数值。如果没有给出参数,则返回当前速度。
如果输入是大于 10 或小于 0.5 的数字,则速度设置为 0。速度字符串映射到速度值,如下所示:
- “fastest”:0
- “fast”:10
- “normal”:6
- “slow”:3
- “slowest”: 1
从 1 到 10 的速度强制执行越来越快的线条绘制和 turtle 转动动画。
注意:
speed
= 0 表示发生no
动画。前进/后退使 turtle 跳跃,同样左/右使 turtle 立即转动。>>> turtle.speed() 3 >>> turtle.speed('normal') >>> turtle.speed() 6 >>> turtle.speed(9) >>> turtle.speed() 9
相关用法
- Python turtle.speed()用法及代码示例
- Python turtle.shapesize用法及代码示例
- Python turtle.setworldcoordinates()用法及代码示例
- Python turtle.shape()用法及代码示例
- Python turtle.setx()用法及代码示例
- Python turtle.settiltangle()用法及代码示例
- Python turtle.screensize用法及代码示例
- Python turtle.shape用法及代码示例
- Python turtle.setup用法及代码示例
- Python turtle.shapetransform()用法及代码示例
- Python turtle.sety用法及代码示例
- Python turtle.settiltangle用法及代码示例
- Python turtle.stamp用法及代码示例
- Python turtle.setundobuffer()用法及代码示例
- Python turtle.showturtle()用法及代码示例
- Python turtle.shapetransform用法及代码示例
- Python turtle.stamp()用法及代码示例
- Python turtle.shearfactor()用法及代码示例
- Python turtle.setx用法及代码示例
- Python turtle.shearfactor用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 turtle.speed。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。