En Python, el módulo de matemáticas contiene una serie de operaciones matemáticas, que se pueden realizar con facilidad utilizando el módulo. math.fabs()
La función devuelve el valor absoluto del número.
Syntax: math.fabs(x) Parameter: x: This is a numeric expression. Returns: the absolute value of the number.
Código #1:
# Python code to demonstrate the working of fabs() # importing "math" for mathematical operations import math x = -33.7 # returning the fabs of 33.7 print ("The fabs of 33.7 is : ", end ="") print (math.fabs(x))
Producción:
The fabs of 33.7 is : 33.7
Código #2:
# Python code to demonstrate the working of fabs() # importing "math" for mathematical operations import math # prints the fabs using fabs() method print ("math.fabs(-13.1) : ", math.fabs(-13.1)) print ("math.fabs(101.96) : ", math.fabs(101.96))
Producción:
math.fabs(-13.1) : 13.1 math.fabs(101.96) : 101.96