python中的取整
时间: 2023-12-06 07:44:50 浏览: 77
在 Python 中,可以使用以下函数来进行取整操作:
1. `round(x)`:四舍五入取整,参数 x 为需要取整的数字。
2. `int(x)`:向下取整,强制转换为整数类型,参数 x 为需要取整的数字。
3. `math.ceil(x)`:向上取整,返回不小于 x 的最小整数,需要引入 math 模块,参数 x 为需要取整的数字。
4. `math.floor(x)`:向下取整,返回不大于 x 的最大整数,需要引入 math 模块,参数 x 为需要取整的数字。
例如:
```python
import math
a = 3.6
print(round(a)) # 输出:4
print(int(a)) # 输出:3
print(math.ceil(a)) # 输出:4
print(math.floor(a)) # 输出:3
```
阅读全文