python输出结果取整
时间: 2023-06-29 19:10:53 浏览: 74
Python如何输出整数
可以使用Python的内置函数`round()` 来对浮点数进行四舍五入取整。它的语法如下:
```
round(number[, ndigits])
```
其中,`number` 是要取整的浮点数, `ndigits` 是保留的小数位数,默认为0,表示取整到整数。例如:
```python
>>> x = 3.14159
>>> round(x)
3
>>> round(x, 2)
3.14
>>> round(x, 3)
3.142
```
在这个例子中,`round(x)` 取整到整数,返回值为3;`round(x, 2)` 取两位小数,返回值为3.14;`round(x, 3)` 取三位小数,返回值为3.142。
阅读全文