扫码一下
查看教程更方便
hypot() 返回欧几里德范数 sqrt(xx + yy)。
以下是 hypot() 方法的语法:
import math
math.hypot(x, y)
注意:hypot()是不能直接访问的,需要导入 math 模块,然后通过 math 静态对象调用该方法。
以下展示了使用 hypot() 方法的实例:
#!/usr/bin/python
import math
print "hypot(3, 2) : ", math.hypot(3, 2)
print "hypot(-3, 3) : ", math.hypot(-3, 3)
print "hypot(0, 2) : ", math.hypot(0, 2)
上述代码执行结果如下:
hypot(3, 2) : 3.60555127546
hypot(-3, 3) : 4.24264068712
hypot(0, 2) : 2.0