En python, se pueden realizar varias operaciones matemáticas con facilidad importando un módulo llamado «matemáticas» que define varias funciones que facilitan nuestras tareas.
1. ceil() : – Esta función devuelve el valor integral más pequeño mayor que el número . Si número ya es entero, se devuelve el mismo número.
2. Floor() : – Esta función devuelve el mayor valor integral más pequeño que el número . Si número ya es entero, se devuelve el mismo número.
# Python code to demonstrate the working of # ceil() and floor() # importing "math" for mathematical operations import math a = 2.3 # returning the ceil of 2.3 print ("The ceil of 2.3 is : ", end="") print (math.ceil(a)) # returning the floor of 2.3 print ("The floor of 2.3 is : ", end="") print (math.floor(a))
Producción:
The ceil of 2.3 is : 3 The floor of 2.3 is : 2
3. fabs() :- Esta función devuelve el valor absoluto del número.
4. factorial() :- Esta función devuelve el factorial del número. Se muestra un mensaje de error si el número no es entero.
# Python code to demonstrate the working of # fabs() and factorial() # importing "math" for mathematical operations import math a = -10 b= 5 # returning the absolute value. print ("The absolute value of -10 is : ", end="") print (math.fabs(a)) # returning the factorial of 5 print ("The factorial of 5 is : ", end="") print (math.factorial(b))
Producción:
The absolute value of -10 is : 10.0 The factorial of 5 is : 120
5. copysign(a, b) :- Esta función devuelve el número con el valor de ‘a’ pero con el signo de ‘b’ . El valor devuelto es de tipo flotante.
6. gcd() :- Esta función se usa para calcular el máximo común divisor de 2 números mencionados en sus argumentos. Esta función funciona en Python 3.5 y superior.
# Python code to demonstrate the working of # copysign() and gcd() # importing "math" for mathematical operations import math a = -10 b = 5.5 c = 15 d = 5 # returning the copysigned value. print ("The copysigned value of -10 and 5.5 is : ", end="") print (math.copysign(5.5, -10)) # returning the gcd of 15 and 5 print ("The gcd of 5 and 15 is : ", end="") print (math.gcd(5,15))
Producción:
The copysigned value of -10 and 5.5 is : -5.5 The gcd of 5 and 15 is : 5
Este artículo es una contribución de Manjeet Singh . Si le gusta GeeksforGeeks y le gustaría contribuir, también puede escribir un artículo usando contribuya.geeksforgeeks.org o envíe su artículo por correo a contribuya@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.
Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA