📜  Python| cmath.log() 方法

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

Python| cmath.log() 方法

cmath.log()方法的帮助下,我们可以通过将其传递给cmath.log()方法来找到具有自然基值的任意数的 log 值。

示例 #1:
在这个例子中,我们可以看到通过使用cmath.log()方法,我们可以通过传递任何值来获取具有自然基数的 log 的值。

# importing cmath library
import cmath
  
# using cmath.log() method
gfg = cmath.log(5)
  
print(gfg)

输出 :

示例 #2:

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

输出 :