python保留5位小数点
时间: 2023-04-10 16:01:11 浏览: 123
python保留小数位的三种实现方法
Python中要保留5位小数,可以使用以下方法:
使用格式化字符串:
```
x = 3.1415926535
print(f'{x:.5f}')
```
使用round函数:
```
x = 3.1415926535
print(round(x, 5))
```
使用format函数:
```
x = 3.1415926535
print('{:.5f}'.format(x))
```
使用numpy的around函数:
```
import numpy as np
x = 3.1415926535
print(np.around(x, decimals=5))
```
使用Decimal类:
```
from decimal import Decimal
x = 3.1415926535
print(Decimal(x).quantize(Decimal('0.00000')))
```
阅读全文