Python怎么保留小数
时间: 2023-07-16 10:15:26 浏览: 100
python保留两位小数
在Python中,可以使用round()函数来保留小数。这个函数的用法如下:
```
round(number, ndigits)
```
其中,number是需要保留小数的数字,ndigits是保留小数的位数。例如:
```python
x = 3.1415926
print(round(x, 2)) # 输出3.14
```
这个例子中,x是一个浮点数,使用round()函数将其保留了2位小数,输出结果为3.14。
阅读全文