借助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)
相關用法
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python next()用法及代碼示例
- Python os.unlink()用法及代碼示例
- Python PyTorch cos()用法及代碼示例
- Python Tensorflow abs()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python os.makedirs()用法及代碼示例
- Python Decimal exp()用法及代碼示例
- Python range()用法及代碼示例
- Python iter()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | cmath.exp() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。