float 转int 代码
时间: 2023-11-16 10:07:05 浏览: 70
c++ float转int
5星 · 资源好评率100%
在 Python 中,可以使用 int() 函数将 float 转换为 int。例如:
```python
f = 3.14
i = int(f)
print(i) # 输出 3
```
如果需要四舍五入后再转换为整数,可以使用 round() 函数:
```python
f = 3.7
i = int(round(f))
print(i) # 输出 4
```
阅读全文