当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python math.log10()用法及代码示例


Python math.log10() 方法

math.log10() 方法是 math 模块的一个库方法,用于获取一个数字的以 2 为底的对数,它接受一个数字并返回给定数字的以 10 为底的对数。

math.log10() 方法比 log(x, 10) 给出更准确的结果。

注意:如果我们提供除数字以外的任何其他内容,该方法将返回一个 TypeError ——“TypeError:a float is required”。

math.log10() 方法的语法:

    math.log10(x)

参数:x– 是要计算以 10 为底的对数的数字。

返回值: float– 它返回一个浮点值,它是数字的以 10 为底的对数x

例:

    Input:
    x = 21

    # function call
    print(math.log10(x))

    Output:
    1.3222192947339193

用于演示 math.log10() 方法示例的 Python 代码

# python code to demonstrate example of 
# math.log10() method

# importing math module
import math

# Base-10 logarithm
x = 21
print("Base-10 logarithm of ", x, " is = ", math.log10(x))

x = 10.23
print("Base-10 logarithm of ", x, " is = ", math.log10(x))

输出

Base-10 logarithm of  21  is =  1.3222192947339193
Base-10 logarithm of  10.23  is =  1.0098756337121602


相关用法


注:本文由纯净天空筛选整理自 math.log10() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。