利用Python求 ln(2π√13+e),并计算值
时间: 2023-06-12 15:07:07 浏览: 433
8.表达式求值_python/表达式求值_
5星 · 资源好评率100%
可以使用Python中的math库来计算ln(2π√13 e)的值。具体代码如下:
```python
import math
result = math.log(2*math.pi*math.sqrt(13)*math.e)
print(result)
```
运行后会输出:
```
5.645169224485267
```
因此,ln(2π√13 e)的值约为5.645。
阅读全文