Python exp() 函數
描述
#exp() 函數傳回x 的指數,
語法
import mathmath.exp(x)
注意:exp() 是不能直接存取的,需導入math 模組,透過靜態物件呼叫該方法。
參數
x 數值表達式
傳回值
傳回x 的指數
實例
# -*- coding: UTF-8 -*-import math # 导入 math 模块print "math.exp(2) : ", math.exp(2)print "math.exp(100.12) : ", math.exp(100.12)print "math.exp(100.72) : ", math.exp(100.72)print "math.exp(119L) : ", math.exp(119L)print "math.exp(math.pi) : ", math.exp(math.pi)
輸出:
math.exp(2) : 7.38905609893math.exp(100.12) : 3.03084361407e+43math.exp(100.72) : 5.52255713025e+43math.exp(119L) : 4.7978133273e+51math.exp(math.pi) : 23.1406926328
描述
exp() 函數傳回x 的指數,
語法##
import mathmath.exp(x)注意:exp() 是不能直接存取的,需導入math 模組,透過靜態物件呼叫該方法。
參數
傳回x 的指數
實例# -*- coding: UTF-8 -*-import math # 导入 math 模块print "math.exp(2) : ", math.exp(2)print "math.exp(100.12) : ", math.exp(100.12)print "math.exp(100.72) : ", math.exp(100.72)print "math.exp(119L) : ", math.exp(119L)print "math.exp(math.pi) : ", math.exp(math.pi)
#輸出:
math.exp(2) : 7.38905609893math.exp(100.12) : 3.03084361407e+43math.exp(100.72) : 5.52255713025e+43math.exp(119L) : 4.7978133273e+51math.exp(math.pi) : 23.1406926328
【相關推薦】
# #1.
分享Python中用於計算指數的exp()方法實例教程
2. 分享使用python編寫poc,exp的實例教程
以上是詳解Python中exp() 函數教程的詳細內容。更多資訊請關注PHP中文網其他相關文章!