python中的log函数
时间: 2023-09-28 19:10:17 浏览: 77
python的logging模块
Python中的log函数是math库中的函数,用于计算自然对数,即以e为底的对数。其函数原型如下:
```python
import math
math.log(x[, base])
```
其中,x为需要求对数的数值,base为可选参数,表示对数的底数,默认为e。
示例代码:
```python
import math
# 求10的自然对数
print(math.log(10))
# 求2的以10为底的对数
print(math.log(2, 10))
```
输出:
```
2.302585092994046
0.3010299956639812
```
阅读全文