Python math.log10() 函数
Python math.log10() 函数返回返回以 10 为基数的 x 对数,即 log10x
导入模块
import math
语法
math.log10( x )
参数
参数 | 说明 |
---|---|
x | 数值表达式 |
返回值
返回以 10 为基数的 x 对数,x>0
范例
下面的代码使用 math.log10() 求一些数值的以 10 为底的对数值
>>> import math >>> math.log10(100.12) 2.0005208409361854 >>> math.log10(100.72) 2.003115717099806 >>> math.log10(119L) 2.0755469613925306 >>> math.log10(math.pi) 0.49714987269413385 >>> math.log10(10) 1.0