📌  相关文章
📜  从两端舍入到最接近的 5 python 的倍数 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:24.196000             🧑  作者: Mango

代码示例2
#round up to multiple of 5 from both end
def rof(x,y,z):
    if x%5==4:
        x+=1
    elif x%5==1:
        x-=1
    elif x%5==2:
        x-=2