Python 保留2位小数

第一种:round(a,2)

第二种:'%.2f' % a

第三种:Decimal('3.1415926').quantize(Decimal('0.00'))



你可能感兴趣的:(Python 保留2位小数)