python 保存两位小数
2020-12-13 01:53
标签:float imp deb img text src while number ima python 保存两位小数 标签:float imp deb img text src while number ima 原文地址:https://www.cnblogs.com/dream4567/p/11015719.html 一、代码
import decimal
decimal.getcontext().rounding = decimal.ROUND_HALF_UP
def index(number):
n = str(number*100)
n = decimal.Decimal(n).__round__(1)
n = n / decimal.Decimal("100")
n = decimal.Decimal(str(n), decimal.getcontext())
return float(n.__round__(2))
count = 0.015
while count
二、结果
上一篇:HTML学习笔记04