📜  Python| cmath.exp() 方法

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

Python| cmath.exp() 方法

cmath.exp()方法的帮助下,我们可以通过将它传递给cmath.exp()方法来找到任何数字的指数。

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

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

输出 :

示例 #2:

# importing cmath library
import cmath
  
# using cmath.exp() method
gfg = cmath.exp(-16)
  
print(gfg)

输出 :