Python sympy.divmod()方法 在sympy.divmod()方法的帮助下,我们可以找到给定值的模数和商数。 语法: sympy.divmod(val1, val2) 返回: (商数、模数) 例子#1 : # import sympy from sympy import * # Using sympy.divmod() method gfg = divmod(Integer(48), Integer(7)) print(gfg) PythonCopy 输出: (6, 6) PythonCopy 例子#2 : # import sympy from sympy import * # Using sympy.divmod() method gfg = divmod(48.2, Integer(7)) print(gfg) PythonCopy 输出: (6, 6.2) PythonCopy