Introduction to the hypot () method in Python, pythonhypot
The euclidean norm sqrt (x * x + y * y) returned by the hypot () method ).
Syntax
The syntax of the hypot () method is as follows:
Hypot (x, y)
Note: This function cannot be directly accessed. Therefore, we need to import the math module and then use the static object of math to call this function.
Parameters
- X -- this must be a value
- Y -- this method returns euclidean norm sqrt (x * x + y * y)
Return Value
This method returns the euclidean norm sqrt (x * x + y * y)
Example
The following example shows how to use the hypot () method.
#! /Usr/bin/pythonimport mathprint "hypot (3, 2):", math. hypot (3, 2) print "hypot (-3, 3):", math. hypot (-3, 3) print "hypot (0, 2):", math. hypot (0, 2)
When we run the above program, it will produce the following results:
Hypot (3, 2): 3.60555127546 hypot (-3, 3): 4.24264068712 hypot (0, 2): 2.0