用python写一个程序使用string format的方式输出math模块中定义的pi值,并保留四位有效数字
时间: 2024-04-30 18:23:57 浏览: 101
用mpi实现的一个简单程序 求pi值
5星 · 资源好评率100%
好的,以下是使用 Python 编写程序输出 math 模块中定义的 pi 常量,并保留四位有效数字的代码:
```python
import math
pi = math.pi
print("π约等于 {:.4f}".format(pi))
```
运行结果为:
```
π约等于 3.1416
```
希望能够满足您的需求。
阅读全文