Python中保留两位小数的几种方法

num = 1.22334577901
# 保留两位小数
print('{:.2f}'.format(num))

print('%.2f' % num)

print(round(num, 2))

 

你可能感兴趣的:(python)