Python 3 – Number log10() 方法
描述
log10() 方法返回x的以10为底的对数,其中 x > 0。
语法
log10() 方法的语法如下 –
import math
math.log10( x )
注意 - 此函数不能直接访问,因此我们需要导入 math 模块,然后使用 math 静态对象调用此函数。
参数
x - 这是一个数字表达式。
返回值
此方法返回 x 的以10为底的对数,其中 x > 0。
示例
下面的示例演示了 log10() 方法的用法。
#!/usr/bin/python3
import math # 这将导入 math 模块
print ("math.log10(100.12) : ", math.log10(100.12))
print ("math.log10(100.72) : ", math.log10(100.72))
print ("math.log10(119) : ", math.log10(119))
print ("math.log10(math.pi) : ", math.log10(math.pi))
输出
运行上面的程序后,将产生以下结果 –
math.log10(100.12) : 2.0005208409361854
math.log10(100.72) : 2.003115717099806
math.log10(119) : 2.0755469613925306
math.log10(math.pi) : 0.49714987269413385