位置:首頁 > 腳本語言 > Python教學 > Python hypot()方法

Python hypot()方法

hypot()方法返回的歐幾裡德範數 sqrt(x*x + y*y).

語法

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

hypot(x, y)

注意:此函數是無法直接訪問的,所以我們需要導入math模塊,然後需要用math的靜態對象來調用這個函數

參數

  • x -- 這必須是一個數值

  • y -- 此方法返回歐幾裡德範數 sqrt(x*x + y*y)

返回值

此方法返回歐幾裡德範數 sqrt(x*x + y*y)

例子

下麵的例子顯示 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