美文网首页
Python中取模和取余运算实现方法

Python中取模和取余运算实现方法

作者: SystemLight | 来源:发表于2020-12-12 16:43 被阅读0次

    取模

    Python中可直接用%,计算模,r = a % b

    def mod(a, b):
        c = a // b
        r = a - c * b
        return r
    

    取余

    def rem(a, b):
        c = int(a / b)
        r = a - c * b
        return r
    

    相关文章

      网友评论

          本文标题:Python中取模和取余运算实现方法

          本文链接:https://www.haomeiwen.com/subject/rmfygktx.html