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


Python math exp()用法及代碼示例


Python具有數學庫,並且具有許多與此相關的函數。 exp()就是這樣一種函數。該方法用於計算e的冪,即e^y或可以說y的 index 。 e的值大約等於2.71828…..

用法: math.exp(y)

參數:
y[必需]-它是任何有效的python數字,可以是正數或負數。
注意,如果y的值不是數字,則返回錯誤。


返回:通過計算e^y返回浮點數。

代碼1:

# Python3 code to demonstrate  
# the working of exp()  
import math  
  
# initializing the value  
test_int = 4
test_neg_int = -3
test_float = 0.00
  
# checking exp() values  
# with different numbers 
print (math.exp(test_int)) 
print (math.exp(test_neg_int)) 
print (math.exp(test_float))
輸出:
54.598150033144236
0.049787068367863944
1.0

代碼2:

# Python3 code to demonstrate  
# the working of exp()  
import math  
  
# checking exp() values  
# with inbuilt numbers 
print (math.exp(math.pi)) 
print (math.exp(math.e))
輸出:
23.140692632779267
15.154262241479262


代碼3:TypeError

# Python3 code to demonstrate  
# the working of exp()  
import math  
  
# checking for string 
print (math.exp("25"))

輸出:

Traceback (most recent call last):
  File "/home/c7ae4f1bef0ed8c7756b3f55e7d2ce81.py", line 6, in 
    print (math.exp("25"))
TypeError:a float is required


相關用法


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