python python中的模运算

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python python中的模运算相关的知识,希望对你有一定的参考价值。

#modular arithmetic 

def mod(x, n):
    return x%n

def modulo(x, n):
    try:
        assert x > n
        while x > n:
            x -= n
        return x
    except AssertionError:
        raise ValueError
        
def congruent(a, b, n):
    if (a-b)%n == 0:
        return True
    else:
        return False

以上是关于python python中的模运算的主要内容,如果未能解决你的问题,请参考以下文章

Python中负数的模运算

Python内置函数_数学运算类

当第一个数字较小时,模运算如何工作?

自学Python-内置函数详解

PYTHON 函数总结

python 内置函数