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

返回上一级

Python3 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.