Con la ayuda del cmath.exp()
método, podemos encontrar el exponente de cualquier número pasándolo al cmath.exp()
método.
Sintaxis :
cmath.exp(value)
Return : Devuelve el valor exponencial.
Ejemplo #1:
En este ejemplo, podemos ver que al usar el cmath.exp()
método, podemos obtener los valores del exponente pasándole cualquier valor.
# importing cmath library import cmath # using cmath.exp() method gfg = cmath.exp(5) print(gfg)
Producción :
(148.4131591025766 + 0j)
Ejemplo #2:
# importing cmath library import cmath # using cmath.exp() method gfg = cmath.exp(-16) print(gfg)
Producción :
(1.1253517471925912e-07+0j)
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA