标签:print 格式化 int ima 保留 from 字符串 方法 使用字符串
Python保留小数的几种方法
1.使用字符串格式化
print("%.2f"%a)
2.使用round内置函数
round(num,2)
3.使用Decimal模块
from decimal impot Decimal
a=12.314
Decimal(a).quantize(Decimal("0.00"))
标签:print 格式化 int ima 保留 from 字符串 方法 使用字符串
原文地址:https://www.cnblogs.com/zhichun/p/11441414.html