Python tiene una biblioteca matemática y tiene muchas funciones al respecto. Una de esas funciones es exp() . Este método se usa para calcular la potencia de e, es decir, e^y o podemos decir exponencial de y. El valor de e es aproximadamente igual a 2.71828…..
Sintaxis: matemática.exp(y)
Parámetros:
y [Obligatorio]: es cualquier número de Python válido, ya sea positivo o negativo.
Tenga en cuenta que si y tiene un valor distinto al número, entonces es un error de retorno.Devoluciones: Devuelve el número de coma flotante calculando e^y.
Código # 1:
# Python3 code to demonstrate # the working of exp() import math # initializing the value test_int = 4 test_neg_int = -3 test_float = 0.00 # checking exp() values # with different numbers print (math.exp(test_int)) print (math.exp(test_neg_int)) print (math.exp(test_float))
54.598150033144236 0.049787068367863944 1.0
Código #2:
# Python3 code to demonstrate # the working of exp() import math # checking exp() values # with inbuilt numbers print (math.exp(math.pi)) print (math.exp(math.e))
23.140692632779267 15.154262241479262
Código #3: Error de tipo
# Python3 code to demonstrate # the working of exp() import math # checking for string print (math.exp("25"))
Producción:
Traceback (most recent call last): File "/home/c7ae4f1bef0ed8c7756b3f55e7d2ce81.py", line 6, in print (math.exp("25")) TypeError: a float is required
Publicación traducida automáticamente
Artículo escrito por AKASH GUPTA 6 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA