示例
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
参考
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
参考