python 保留四位有效数字
时间: 2024-01-16 20:18:55 浏览: 402
python基于PIL生成四位随机图形验证码
你可以使用以下方法来在Python中保留四位有效数字:
方法一:使用round()函数
```python
num = 3.1415926
result = round(num, 4)
print(result) # 输出:3.1416
```
方法二:使用字符串格式化
```python
num = 3.1415926
result = "{:.4f}".format(num)
print(result) # 输出:3.1416
```
方法三:使用math模块的round()函数
```python
import math
num = 3.1415926
result = math.round(num, 4)
print(result) # 输出:3.1416
```
方法四:使用numpy库
```python
import numpy as np
num = 3.1415926
result = np.round(num, 4)
print(result) # 输出:3.1416
```
阅读全文