這篇文章主要介紹了Python中的hypot()方法使用簡介,是Python入門所需掌握的基礎知識,需要的朋友可以參考下
hypot()方法返回的歐幾裡德范數 sqrt(x*x + y*y).
語法
以下是hypot()方法的語法:
?
1 hypot(x, y)注意:此函數是無法直接訪問的,所以我們需要導入math模塊,然後需要用math的靜態對象來調用這個函數
參數
x -- 這必須是一個數值
y -- 此方法返回歐幾裡德范數 sqrt(x*x + y*y)
返回值
此方法返回歐幾裡德范數 sqrt(x*x + y*y)
例子
下面的例子顯示 hypot()方法的使用。
?
1 2 3 4 5 6 #!/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)當我們運行上面的程序,它會產生以下結果:
?
1 2 3 hypot(3, 2) : 3.60555127546 hypot(-3, 3) : 4.24264068712 hypot(0, 2) : 2.0