Python 3 - 数字 hypot() 方法
-
描述
方法hypot()返回欧几里得范数,sqrt(x*x + y*y)。这是从原点到点 (x,y) 的向量长度 -
句法
以下是语法hypot()方法 -hypot(x, y)
注意− 这个函数不能直接访问,所以我们需要导入数学模块,然后我们需要使用数学静态对象调用这个函数。 -
参数
-
y− 这必须是一个数值。
-
x− 这必须是一个数值。
-
-
返回值
此方法返回欧几里德范数,sqrt(x*x + y*y)。 -
例子
以下示例显示了 hypot() 方法的用法。#!/usr/bin/python3 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