python中round函数
时间: 2023-09-07 08:14:34 浏览: 198
说说 Python 的 round 函数
在 Python 中,round() 函数用于四舍五入。它可以接受两个参数:第一个参数是要进行四舍五入的数,第二个参数是保留的小数位数(默认为0)。如果第二个参数为负数,则表示要将整数部分四舍五入到指定的小数位数。
以下是一些示例:
```python
# 四舍五入到整数
print(round(3.6)) # 输出 4
print(round(3.4)) # 输出 3
# 四舍五入到一位小数
print(round(3.14159, 1)) # 输出 3.1
print(round(3.14159, 2)) # 输出 3.14
print(round(3.14159, 3)) # 输出 3.142
# 将整数部分四舍五入到指定的小数位数
print(round(12345, -1)) # 输出 12350
print(round(12345, -2)) # 输出 12300
print(round(12345, -3)) # 输出 12000
```
阅读全文