• python 中小数点后的位数
  • 第一种方法:
a = 8.8888
使用round 函数
b = round(a,2) # 保留小数点后两位小数,会四舍五入
b 就等于8.89

第二种方法:

b= "%.2f"%a # 也会四舍五入

第三种方法:

ret1 = Decimal("88.001").quantize(Decimal("0.00"))
print(ret1)

# 满5进1的写法
from decimal import Decimal, ROUND_HALF_UP
res = Decimal(str(11.565)).quantize(Decimal("0.00"),ROUND_HALF_UP)