math.hypot(x, y)
Return the Euclidean norm, sqrt(x*x + y*y)
. This is the length of the vector from the origin to point (x, y)
.
math.hypot(x, y)
Return the Euclidean norm, sqrt(x*x + y*y)
. This is the length of the vector from the origin to point (x, y)
.
Please login to continue.