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