Python3教程
+ -

Python3 hypot() 函数

2019-09-09 1 0

hypot() 返回欧几里德范数 sqrt(xx + yy)。

语法

以下是 hypot() 方法的语法:

import math
math.hypot(x, y)

注 意:hypot()是不能直接访问的,需要导入 math 模块,然后通过 math 静态对象调用该方法。

参数

  • x — 一个数值。
  • y — 一个数值。

返回值

返回欧几里德范数 sqrt(xx + yy)。

实例

以下展示了使用 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.605551275463989
hypot(-3, 3) :  4.242640687119285
hypot(0, 2) :  2.0

0 篇笔记 写笔记

Python3 hypot() 函数
hypot() 返回欧几里德范数 sqrt(xx + yy)。语法以下是 hypot() 方法的语法:import mathmath.hypot(x, y)注 意:hypot()是不能直接访问的,需要导入 math 模块,然后通过 math 静态对象调用该方法。参数x — 一个数值。y — 一个数值......
取消
感谢您的支持,我会继续努力的!
扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

您的支持,是我们前进的动力!