創(chuàng)新互聯(lián)www.cdcxhl.cn八線動態(tài)BGP香港云服務(wù)器提供商,新人活動買多久送多久,劃算不套路!
為富蘊(yùn)等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及富蘊(yùn)網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為網(wǎng)站建設(shè)、網(wǎng)站制作、富蘊(yùn)網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!小編給大家分享一下python中計算log對數(shù)的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
python中計算log對數(shù)的方法:首先導(dǎo)入【math】模塊;然后使用“math.log(x)”來計算x的對數(shù),log(x)用于返回參數(shù)x的自然對數(shù)。
Python log() 函數(shù)
log() 返回 x 的自然對數(shù)。
語法
以下是 log() 方法的語法:
import math math.log(x[, base])
注意:log()是不能直接訪問的,需要導(dǎo)入 math 模塊,通過靜態(tài)對象調(diào)用該方法。
參數(shù)
x -- 數(shù)值表達(dá)式。base -- 可選,底數(shù),默認(rèn)為 e。
返回值
返回 x 的自然對數(shù),x>0。
實例
以下展示了使用 log() 方法的實例:
#!/usr/bin/python # -*- coding: UTF-8 -*- 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
看完了這篇文章,相信你對python中計算log對數(shù)的方法有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道,感謝各位的閱讀!