python 对一个小数取整数
时间: 2024-01-21 15:02:07 浏览: 60
yolov5s nnie.zip
Python中可以使用内置函数`round()`来对小数进行四舍五入取整,例如:
```python
num = 3.1415926
result = round(num)
print(result) # 输出 3
```
如果需要指定小数位数,可以将要取整的小数和位数作为参数传递给`round()`,例如:
```python
num = 3.1415926
result = round(num, 2) # 保留两位小数
print(result) # 输出 3.14
```
另外,如果需要向上或向下取整,可以使用`math.ceil()`和`math.floor()`函数,例如:
```python
import math
num = 3.5
result_ceil = math.ceil(num) # 向上取整
result_floor = math.floor(num) # 向下取整
print(result_ceil) # 输出 4
print(result_floor) # 输出 3
```
希望能帮助到你!
阅读全文