首頁 >後端開發 >Python教學 >python e怎麼表示

python e怎麼表示

coldplay.xixi
coldplay.xixi原創
2021-03-02 15:41:4539884瀏覽

python e的表示方法:使用【exp()】方法,程式碼為【import math;math.exp( x );】,【exp()】是不能直接存取的,需要導入math模組,透過靜態物件呼叫該方法。

python e怎麼表示

本教學操作環境: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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn