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