Latest web development tutorials

Python3 hypot function ()

Python3 cyfrowe Python3 cyfrowe


opis

hypot () Zwraca euklidesową sqrt (x * norma x + y * y).


gramatyka

Poniżej znajduje się Składnia metody hypot ():

import math

math.hypot(x, y)

Uwaga: hypot () nie jest bezpośrednio dostępna, należy zaimportować moduł matematyczny, a następnie wywołać metodę, za pomocą statycznych obiektów matematycznych.


parametry

  • x - wartość.
  • y - wartość.

Wartość zwracana

Powrót normą euklidesową sqrt (x * x + y * y).


Przykłady

Poniżej przedstawiono przykład zastosowania metody 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))

Po uruchomieniu wyjście Powyższy przykład jest:

hypot(3, 2) :  3.605551275463989
hypot(-3, 3) :  4.242640687119285
hypot(0, 2) :  2.0

Python3 cyfrowe Python3 cyfrowe