python四舍五入函数round的用法范例,看完段代码基本就完全了解了
python四舍五入函数round的用法范例,round用来做四舍五入,第一个参数为要进行四舍五入的数字,第二个参数为空则默认对小数点后1位进行四舍五入,如果指定了第二个参数,则可以按照指定位置进行四舍五入。
""" 作者:皮蛋编程(https://www.pidancode.com) 创建日期:2022/3/22 功能描述:python四舍五入函数round的用法范例,看完段代码基本就完全了解了 """ print(round(3.4)) # 3 print(round(3.5)) # 4 print(round(3.6)) # 4 print(round(3.6, 0)) # 4 print(round(1.95583, 2)) # 1.96 print(round(1241757, -3)) # 1242000 print(round(5.045, 2)) # 5.05 print(round(5.055, 2)) # 5.06
以上代码在python3.9环境下测试通过
相关文章