在python中使用log函數(shù)的方法
在python中使用log函數(shù)時,log()函數(shù)無法直接訪問,需要先導(dǎo)入math模塊,在通過靜態(tài)對象調(diào)用;
log():log函數(shù)的作用是返回一個數(shù)的自然對數(shù)。
log()函數(shù)語法:
import math
math.log(x[, base])
使用方法:
import math #導(dǎo)入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)
# 設(shè)置底數(shù)
print "math.log(10,2) : ", math.log(10,2)
輸出結(jié)果為:
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