PYTHON备赛蓝桥杯小知识点

输出小数点后两位

n=34.4567
#保留小数点后两位
print(round(n,2))
print('{:.2f}'.format(n))
 

你可能感兴趣的:(蓝桥杯,python,职场和发展)