python e的表示方法:使用【exp()】方法,程式碼為【import math;math.exp( x );】,【exp()】是不能直接存取的,需要導入math模組,透過靜態物件呼叫該方法。
本教學操作環境:windows7系統、python3.9版,DELL G3電腦。
python e的表示法:
exp()
方法傳回x的指數,ex。
語法
以下是exp()
方法的語法:
import math math.exp( x )
注意:exp()是不能直接訪問的,需要導入math 模組,透過靜態物件呼叫該方法。
參數
x -- 數值表達式。
傳回值
傳回x的指數,ex。
實例
以下展示了使用exp() 方法的實例:
#!/usr/bin/python import math # 导入 math 模块 print "math.exp(-45.17) : ", math.exp(-45.17) 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(-45.17) : 2.41500621326e-20 math.exp(100.12) : 3.03084361407e+43 math.exp(100.72) : 5.52255713025e+43 math.exp(119L) : 4.7978133273e+51 math.exp(math.pi) : 23.1406926328
相關免費學習推薦:python影片教學
以上是python e怎麼表示的詳細內容。更多資訊請關注PHP中文網其他相關文章!