當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python cmath.exp()用法及代碼示例


借助cmath.exp()方法,我們可以將任何數字的指數傳遞給cmath.exp()方法。

用法: cmath.exp(value)
返回: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)



相關用法


注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | cmath.exp() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。