保留小数点的3种方法:
round(a,2) '%.2f' % a Decimal('5.000').quantize(Decimal('0.00'))
round实例
round(80.23456, 2) : 80.23