Método hypot () del número de Python

Descripción

Método del número de Python hypot() devuelve la norma euclidiana, sqrt (x * x + y * y).

Sintaxis

A continuación se muestra la sintaxis de hypot() método -

hypot(x, y)

Note - Esta función no es accesible directamente, por lo que necesitamos importar el módulo matemático y luego debemos llamar a esta función usando un objeto estático matemático.

Parámetros

  • x - Debe ser un valor numérico.

  • y - Debe ser un valor numérico.

Valor devuelto

Este método devuelve la norma euclidiana, sqrt (x * x + y * y).

Ejemplo

El siguiente ejemplo muestra el uso del método 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)

Cuando ejecutamos el programa anterior, produce el siguiente resultado:

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