python进一法取整
时间: 2023-09-23 13:07:09 浏览: 181
Python中取整的几种方法小结
5星 · 资源好评率100%
Python 中有几种取整的方法,具体取决于你需要的精度和舍入规则。
1. 向下取整:使用 `math.floor()` 函数
```python
import math
x = 3.8
print(math.floor(x)) # 输出 3
```
2. 向上取整:使用 `math.ceil()` 函数
```python
import math
x = 3.2
print(math.ceil(x)) # 输出 4
```
3. 四舍五入(保留整数):使用 `round()` 函数
```python
x = 3.5
print(round(x)) # 输出 4
y = 3.4
print(round(y)) # 输出 3
```
4. 保留小数位数并进行四舍五入:使用 `round()` 函数并指定小数位数
```python
x = 3.1415926
print(round(x, 2)) # 输出 3.14
```
阅读全文