示例 print('%.2f' % 1.255)# 1.25print('{:.2f}'.format(1.2635))# 1.26print(format(1.235, '.2f'))# 1.24print(round(1.23456, 2))# 1.23 参考Python保留小数的方法
示例
print('%.2f' % 1.255) # 1.25 print('{:.2f}'.format(1.2635)) # 1.26 print(format(1.235, '.2f')) # 1.24 print(round(1.23456, 2)) # 1.23参考 Python保留小数的方法