python中保留n位小数,可以使用round 函数

a = 34.564636856845754

print(round(a, 2))
print(round(a, 3))

python 1位小数点 python几位小数_python