log() 傳回 x 的自然對數。 math.log(x) 就相當於數學中的ln(x),x>0,求底數為e的對數,e = 2.718281828459;math.log10(x) 就相當於數學中的lg(x), x>0,求底數為10的對數。可以透過log(x[, base])來設定底數,如 log(x, 10) 表示以10為底的對數。
語法
以下是log() 方法的語法:
import math math.log(x[, base])
注意:log()是不能直接存取的,需要導入math 模組,透過靜態物件呼叫該方法。
參數
x -- 數值表達式。 base -- 可選,底數,預設為 e。
相關推薦:《Python影片教學》
返回值
傳回x 的自然對數,x>0 。
實例
以下展示了使用 log() 方法的實例:
#!/usr/bin/python # -*- coding: UTF-8 -*- import math # 导入 math 模块 print "math.log(100.12) : ", math.log(100.12) print "math.log(100.72) : ", math.log(100.72) print "math.log(119L) : ", math.log(119L) print "math.log(math.pi) : ", math.log(math.pi)# 设置底数 print "math.log(10,2) : ", math.log(10,2)
以上實例執行後輸出結果為:
math.log(100.12) : 4.60636946656 math.log(100.72) : 4.61234438974 math.log(119L) : 4.77912349311 math.log(math.pi) : 1.14472988585 math.log(10,2) : 3.32192809489
以上是python中對數函數怎麼表示的詳細內容。更多資訊請關注PHP中文網其他相關文章!