num=3.14*1.57
print(num)
#使用round保留两位小数
round(num,2)
已经先打印mun了再去取两位数当然没有效果,顺序错了
num = round(3.14*1.57, 2) print(num)