python中如何保留小数点后两位
保留两位小数,并做四舍五入处理
方法一:使用字符串格式化
a = 12.345print("%.2f" % a)
# 12.35
方法二:使用round内置函数
a = 12.345a1 = round(a, 2)
print(a1)
# 12.35
方法三:使用decimal模块
from decimal import Decimala = 12.345
Decimal(a).quantize(Decimal("0.00"))
Decimal('12.35')
仅保留两位小数,无需四舍五入
方法一:使用序列中切片
a = 12.345str(a).split('.')[0] + '.' + str(a).split('.')[1][:2]
'12.34'
方法二:使用re模块
import rea = 12.345
re.findall(r"d{1,}?.d{2}", str(a))
['12.34']
众多python教程,尽在网,欢迎在线学习!
以上是 python中如何保留小数点后两位 的全部内容, 来源链接: utcz.com/z/524368.html