Python| cmath.exp() 方法
在cmath.exp()
方法的帮助下,我们可以通过将它传递给cmath.exp()
方法来找到任何数字的指数。
Syntax : cmath.exp(value)
Return : Return the exponential value.
示例 #1:
在这个例子中,我们可以看到通过使用cmath.exp()
方法,我们可以通过传递任何值来获取指数的值。
# importing cmath library
import cmath
# using cmath.exp() method
gfg = cmath.exp(5)
print(gfg)
输出 :
(148.4131591025766 + 0j)
示例 #2:
# importing cmath library
import cmath
# using cmath.exp() method
gfg = cmath.exp(-16)
print(gfg)
输出 :
(1.1253517471925912e-07+0j)