Python math.hypot() 函数
Python math.hypot(x,y) 函数返回欧几里德范数 sqrt(xx + yy)
导入模块
import math
语法
math.hypot(x, y)
参数
参数 | 说明 |
---|---|
x | 一个数值 |
y 一个数值 |
返回值
返回欧几里德范数 sqrt(xx + yy)
范例
下面的代码使用 math.hypot() 函数求欧几里德范数
>>> import math >>> math.hypot(3,4) 5.0 >>> math.hypot(3,2) 3.605551275463989 >>> math.hypot(-3,3) 4.242640687119285 >>> math.hypot(0,2) 2.0