在python中使用log函數的方法
在python中使用log函數時,log()函數無法直接訪問,需要先導入math模塊,在通過靜態對象調用;
log():log函數的作用是返回一個數的自然對數。
log()函數語法:
import math
math.log(x[, base])
使用方法:
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