python取整函数
时间: 2023-06-21 07:15:37 浏览: 100
Python中取整的几种方法小结
5星 · 资源好评率100%
在 Python 中,有以下几种常见的取整函数:
1. 向下取整函数 `math.floor(x)`:返回不大于 x 的最大整数。
2. 向上取整函数 `math.ceil(x)`:返回不小于 x 的最小整数。
3. 四舍五入函数 `round(x[, n])`:返回将 x 四舍五入到 n 位小数的结果,n 默认为 0。
这些函数需要先导入 math 模块,可以使用以下代码实现:
```python
import math
x = 3.14159
# 向下取整
print(math.floor(x)) # 输出 3
# 向上取整
print(math.ceil(x)) # 输出 4
# 四舍五入
print(round(x)) # 输出 3
print(round(x, 2)) # 输出 3.14,保留两位小数
```
阅读全文