📜  Python| cmath.log10() 方法

📅  最后修改于: 2022-05-13 01:55:52.293000             🧑  作者: Mango

Python| cmath.log10() 方法

cmath.log10()方法的帮助下,我们可以通过将其传递给cmath.log10()方法来找到任何具有 base-10 值的数字的 log 值。

示例 #1:
在这个例子中,我们可以看到通过使用cmath.log10()方法,我们可以通过传递任何值来获取以 10 为底的 log 值。

# importing cmath library
import cmath
  
# using cmath.log10() method
gfg = cmath.log10(7)
  
print(gfg)

输出 :

示例 #2:

# importing cmath library
import cmath
  
# using cmath.log10() method
gfg = cmath.log10(25)
  
print(gfg)

输出 :