欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

utility CaculateUtil.py

程序员文章站 2022-05-09 13:32:49
...
import os


def new_round(_float, _len = 0):
    if str(_float)[-1] == '5':
        return int(round(float(str(_float)[:-1]+'6'), _len))
    else:
        return int(round(_float, _len))