Python math.log() 方法
例如:
查找不同数字的自然对数
# Import math Library import math # 返回不同数字的自然对数 print(math.log(2.7183)) print(math.log(2)) print(math.log(1))
1、定义和用法
math.log()
方法返回数字的自然对数,或数字以对数为底的对数。
2、调用语法
math.log(x,base)
3、参数说明
参数 | 描述 |
x | 必需的参数, 指定要为其计算对数的值。 如果值为0或负数,则返回ValueError。 如果该值不是数字,则返回TypeError |
base | 可选的。 使用的对数底数。 默认为“e” |
4、方法说明
返回值: |
|
Python Version: | 在版本2.3中更改 |
Change Log: | 基本参数已添加 |