在对小数1.275
进行四舍五入时,出现了bug,
a=1.275
print(round(a,2))
结果为:1.27
这肯定是不对的呀,百度一下 有一个这个可以用:
from _pydecimal import Decimal,Context,ROUND_HALF_UP
def my_round(str_num):
return (Context(prec=3,rounding=ROUND_HALF_UP).create_decimal('{}'.format(str_num)))
UPDATE:
上述方法还是不行,使用这个:
from decimal import Decimal
new_index=Decimal('{}'.format(old_index)).quantize(Decimal('0.00'))
网友评论