一、保留小数点后n位
方法一:使用字符串格式化
a = 12.3456
print("%.3f"%a) #保留小数点后三位
print("%.2f"%a) # 保留小数点后两位
12.346
12.35
方法二:使用round内置函数
a = 12.3456
a1 = round(a,2) # 保留小数点后两位
a2 = round(a,3) # 保留小数点后三位
print(a1)
print(a2)
12.35
12.346
二、Python之向上取整、向下取整以及四舍五入函数
import math
f = 11.2345
# 向上取整
print(math.ceil(f))
# 向下取整
print(math.floor(f))
# 四舍五入
print(round(f))
12
11
11