Python數位log()
方法返回x
的自然對數(x > 0)。
語法
以下是log()
方法的語法 -
import math
math.log( x )
注意 - 此方法不能直接存取,需要匯入
math
模組,然後使用math
靜態物件呼叫此函式。
引數
返回值
x
的自然對數(x > 0
)。以下範例顯示了log()
方法的用法。
#!/usr/bin/python3
import math # This will import math module
print ("math.log(100.12) : ", math.log(100.12))
print ("math.log(100.72) : ", math.log(100.72))
print ("math.log(math.pi) : ", math.log(math.pi))
當執行上述程式時,它會產生以下結果 -
math.log(100.12) : 4.6063694665635735
math.log(100.72) : 4.612344389736092
math.log(math.pi) : 1.1447298858494002