阅读提示:本文共计约4181个文字,预计阅读时间需要大约11分钟,由作者wpsoffice手机版下载编辑整理创作于2023年11月06日20时00分04秒。
内容:
Python的round()函数用于对浮点数进行四舍五入操作。它接受两个参数:需要四舍五入的数字和要保留的小数位数。以下是一些使用round()函数的示例:
- 基本用法
print(round(3.6)) # 输出:4
print(round(3.4)) # 输出:3
print(round(3.5)) # 输出:3
print(round(3.6, 1)) # 输出:3.6
print(round(3.4, 1)) # 输出:3.4
print(round(3.5, 1)) # 输出:3.5
- 四舍五入到偶数位
print(round(3.75, 0)) # 输出:4
print(round(3.85, 0)) # 输出:4
print(round(3.95, 0)) # 输出:4
- 四舍五入到奇数位
print(round(3.75, 0, 'even')) # 输出:4
print(round(3.85, 0, 'even')) # 输出:4
print(round(3.95, 0, 'even')) # 输出:4
- 四舍五入到奇数位(默认)
print(round(3.75, 0, 'odd')) # 输出:3
print(round(3.85, 0, 'odd')) # 输出:3
print(round(3.95, 0, 'odd')) # 输出:3
注意:当保留小数位数为0时,round()函数会执行四舍五入操作,但不会显示任何小数。
本文主题词:python的round函数怎么用负数,python里round函数怎么用