python 保留两位小数方法
2021-04-13 00:29
标签:处理 details nbsp spl art detail 方法 四舍五入 序列 原博客连接:https://blog.csdn.net/Jerry_1126/article/details/85009810 方法一:使用字符串格式化 方法二: 使用round内置函数 方法三: 使用decimal模块 方法一: 使用序列中切片 方法二: 使用re模块 python 保留两位小数方法 标签:处理 details nbsp spl art detail 方法 四舍五入 序列 原文地址:https://www.cnblogs.com/Ph-one/p/13344892.html保留两位小数,并做四舍五入处理
a = 12.345
print("%.2f" % a)
# 12.35
a = 12.345
a1 = round(a, 2)
print(a1)
# 12.35
from decimal import Decimal
a = 12.345
Decimal(a).quantize(Decimal("0.00"))
Decimal(‘12.35‘)
仅保留两位小数,无需四舍五入
a = 12.345
str(a).split(‘.‘)[0] + ‘.‘ + str(a).split(‘.‘)[1][:2]
‘12.34‘
import re
a = 12.345
re.findall(r"\d{1,}?\.\d{2}", str(a))
[‘12.34‘]