📜  Python| sympy.divmod() 方法

📅  最后修改于: 2022-05-13 01:54:42.089000             🧑  作者: Mango

Python| sympy.divmod() 方法

sympy.divmod()方法的帮助下,我们可以找到给定值的模和商。

Syntax: sympy.divmod(val1, val2)

 Return: (quotient, modulo)

示例 #1:

# import sympy 
from sympy import *
  
# Using sympy.divmod() method 
gfg = divmod(Integer(48), Integer(7))
  
print(gfg)

输出:

(6, 6)

示例 #2:

# import sympy 
from sympy import *
  
# Using sympy.divmod() method 
gfg = divmod(48.2, Integer(7))
  
print(gfg)

输出:

(6, 6.2)