在Python中,可以使用math
庫中的log
函數來計算對數。log
函數有兩個參數:第一個參數是要取對數的數值,第二個參數是對數的基數(默認為e,即自然對數)。以下是使用log
函數的示例代碼:
import math
# 計算以e為底的對數
result = math.log(10)
print(result) # 輸出結果為2.302585092994046
# 計算以2為底的對數
result = math.log(10, 2)
print(result) # 輸出結果為3.3219280948873626
在上述示例中,math.log(10)
計算以e為底的對數,結果為2.302585092994046。math.log(10, 2)
計算以2為底的對數,結果為3.3219280948873626。