Python hypot() 函數(shù)

Python 數(shù)字 Python 數(shù)字


描述

hypot() 返回歐幾里德范數(shù) sqrt(x*x + y*y)。


語法

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

import math

math.hypot(x, y)

注意:hypot()是不能直接訪問的,需要導(dǎo)入 math 模塊,然后通過 math 靜態(tài)對象調(diào)用該方法。


參數(shù)

  • x -- 一個(gè)數(shù)值。
  • y -- 一個(gè)數(shù)值。

返回值

返回歐幾里德范數(shù) sqrt(x*x + y*y)。


實(shí)例

以下展示了使用 hypot() 方法的實(shí)例:

#!/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)

以上實(shí)例運(yùn)行后輸出結(jié)果為:

hypot(3, 2) :  3.60555127546
hypot(-3, 3) :  4.24264068712
hypot(0, 2) :  2.0

Python 數(shù)字 Python 數(shù)字