【20210825】【Python】Python中控制小数点输出位数的方法 2024年3月23日 107次阅读 来源: Satisfying 1. 方法一a = 1.123456 b = round(a, 2) # 输出 b = 1.122. 方法二a = 1.123456 b = '%.2f' % a # 输出 b = 1.12 (参考:python中实现控制小数点位数的方法) 原文作者:Satisfying 原文地址: https://blog.csdn.net/weixin_40583722/article/details/119914458 本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。 < 上一篇 下一篇 >