在Python中,可以使用math模塊中的log函數來計算對數。
首先,需要導入math模塊:
import math
然后,可以使用math.log函數來計算對數。log函數有兩個參數,第一個參數是要計算對數的數值,第二個參數是對數的基數。如果不指定基數,默認為自然對數(以e為底)。
以下是幾個示例:
import math
# 計算以10為底的對數
result1 = math.log(100, 10)
print(result1) # 輸出為2.0
# 計算自然對數
result2 = math.log(100)
print(result2) # 輸出為4.605170185988092
# 計算以2為底的對數
result3 = math.log(8, 2)
print(result3) # 輸出為3.0
在上述示例中,result1計算了以10為底,100的對數,結果為2.0。result2計算了自然對數,以e為底,100的對數,結果為4.605170185988092。result3計算了以2為底,8的對數,結果為3.0。