Con la ayuda del cmath.log()
método, podemos encontrar el valor del logaritmo de cualquier número que tenga un valor de base natural pasándolo al cmath.log()
método.
Sintaxis:
cmath.log(value)
Retorno: Retorna el valor logarítmico de la base natural.
Ejemplo n.º 1:
en este ejemplo, podemos ver que al usar el cmath.log()
método, podemos obtener los valores del registro que tiene una base natural al pasarle cualquier valor.
# importing cmath library import cmath # using cmath.log() method gfg = cmath.log(5) print(gfg)
Producción :
(1.6094379124341003+0j)
Ejemplo #2:
# importing cmath library import cmath # using cmath.log() method gfg = cmath.log(25) print(gfg)
Producción :
(3.2188758248682006+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