math.floor保留两位小数
时间: 2023-09-13 12:13:56 浏览: 614
保留两位小数
`math.floor`函数是向下取整,无法直接用于保留两位小数。需要使用其他方法,比如使用字符串格式化。以下是一个示例代码:
```python
import math
x = 3.1415926
# 保留两位小数的方法一:使用字符串格式化
print(f"{math.floor(x * 100) / 100:.2f}") # 输出 3.14
# 保留两位小数的方法二:使用 round 函数
print(round(x, 2)) # 输出 3.14
```
这里将 `x` 乘以 100 后取整再除以 100,可以得到保留两位小数的结果。另外,还可以使用内置函数 `round` 来实现保留小数点后几位的功能。
阅读全文