Python| cmath.log10() 方法
在cmath.log10()
方法的帮助下,我们可以通过将其传递给cmath.log10()
方法来找到任何具有 base-10 值的数字的 log 值。
Syntax : cmath.log10(value)
Return : Return the log value of base-10.
示例 #1:
在这个例子中,我们可以看到通过使用cmath.log10()
方法,我们可以通过传递任何值来获取以 10 为底的 log 值。
# importing cmath library
import cmath
# using cmath.log10() method
gfg = cmath.log10(7)
print(gfg)
输出 :
(0.8450980400142567+0j)
示例 #2:
# importing cmath library
import cmath
# using cmath.log10() method
gfg = cmath.log10(25)
print(gfg)
输出 :
(1.3979400086720375+0j)