Python sympy.divmod()方法

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)

输出:

(6, 6)

例子#2 :

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

输出:

(6, 6.2)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程