Python/ref math log10

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python math.log10()方法

Methods数学方法

查找不同数字的以10为底的对数

    # Import math Library
import math 

# Return the base-10 logarithm 
    of different numbers
print(math.log10(2.7183))
print(math.log10(2))

    print(math.log10(1))

定义和用法

The math.log10() 方法返回数字的以10为底的对数。

句法

math.log10(x)

参数值

参数 描述
x 需要。指定要为其计算对数的值。如果值为0或负数,则返回ValueError。如果该值不是数字,则返回TypeError

技术细节

返回值: A

float 值,代表数字的以10为底的对数

Python版本: 2.3

Methods数学方法