python 对数函数
时间: 2023-07-16 08:10:36 浏览: 137
对数函数
在 Python 中,可以使用 math 模块中的 log 函数来计算对数。
以下是使用 math.log 函数计算不同底数的对数的示例:
```python
import math
x = 100
# 自然对数(底数为 e)
ln_result = math.log(x)
print("自然对数:", ln_result)
# 以 10 为底的对数
log10_result = math.log10(x)
print("以10为底的对数:", log10_result)
# 以 2 为底的对数
log2_result = math.log2(x)
print("以2为底的对数:", log2_result)
```
输出结果:
```
自然对数: 4.605170185988092
以10为底的对数: 2.0
以2为底的对数: 6.643856189774725
```
注意:math.log 函数的默认底数是 e(自然对数),如果需要计算其他底数的对数,可以使用换底公式进行转换。
阅读全文