2021年7月14日

摘要: a = 5.036,b = 4.000 方法一: round(a,2) -> 5.04 round(b,2) -> 4.0 方法二:最好 float('%.2f' % a) -> 5.04 float('%.2f' % b) -> 4.0 方法三: from decimal import Decim 阅读全文
posted @ 2021-07-14 22:11 子舟 阅读(514) 评论(0) 推荐(0) 编辑
 
摘要: 参考文档地址: https://cuiqingcai.com/1319.html https://blog.csdn.net/qq_44667896/article/details/104793547 阅读全文
posted @ 2021-07-14 22:03 子舟 阅读(54) 评论(0) 推荐(0) 编辑