Python之保留小数点后n位、向上取整、向下取整以及四舍五入函数

一、保留小数点后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
    原文作者:jq_98
    原文地址: https://blog.csdn.net/jq_98/article/details/122160295
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞