用法:
turtle.distance(x, y=None)
- x:- 一个数字或数字对/向量或 turtle 实例
- y:- 一个数字,如果
x
是一个数字,否则None
参数:
返回从 turtle 到 (x,y)、给定向量或给定其他 turtle 的距离,以 turtle 步长为单位。
>>> turtle.home() >>> turtle.distance(30,40) 50.0 >>> turtle.distance((30,40)) 50.0 >>> joe = Turtle() >>> joe.forward(77) >>> turtle.distance(joe) 77.0
相关用法
- Python turtle.distance()用法及代码示例
- Python turtle.delay()用法及代码示例
- Python turtle.done()用法及代码示例
- Python turtle.degrees用法及代码示例
- Python turtle.degrees()用法及代码示例
- Python turtle.dot用法及代码示例
- Python turtle.dot()用法及代码示例
- Python turtle.down()用法及代码示例
- Python turtle.delay用法及代码示例
- Python turtle.write_docstringdict()用法及代码示例
- Python turtle.reset用法及代码示例
- Python turtle.write()用法及代码示例
- Python turtle.getpen()用法及代码示例
- Python turtle.isvisible用法及代码示例
- Python turtle.onkey用法及代码示例
- Python turtle.tracer用法及代码示例
- Python turtle.end_fill()用法及代码示例
- Python turtle.undo用法及代码示例
- Python turtle.onscreenclick()用法及代码示例
- Python turtle.speed()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 turtle.distance。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。