En Python, el módulo de matemáticas contiene una serie de operaciones matemáticas, que se pueden realizar con facilidad usando el módulo. math.copysign(a, b)
función devuelve un flotador con la magnitud (valor absoluto) de a pero el signo de b.
Syntax: math.copysign(a, b) Parameter: a, b: numeric values. Returns: Return absolute value of a but the sign of b.
Código #1:
# Python code to demonstrate the working of copysign() # importing "math" for mathematical operations import math a = 5.2 b = -25 # returning the copysign print ("The copysign of 5.2 and -25 is : ", end ="") print (math.copysign(a, b))
Producción:
The copysign of 5.2 and -25 is : -5.2
Código #2:
# Python code to demonstrate the working of factorial() # importing "math" for mathematical operations import math # returning the copysign print (math.copysign(-13, 25.5)) print (math.copysign(2.87, -15))
Producción:
13.0 -2.87