摘要:
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 阅读全文
2021年7月14日
摘要:
参考文档地址: https://cuiqingcai.com/1319.html https://blog.csdn.net/qq_44667896/article/details/104793547 阅读全文