借助sympy.divmod()
方法,我们可以找到给定值的模数和商。
用法: sympy.divmod(val1, val2) 返回: (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)
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python os.listdir()用法及代码示例
- Python os.umask()用法及代码示例
- Python sympy.eye()用法及代码示例
- Python os.fstatvfs()用法及代码示例
- Python os.uname()用法及代码示例
- Python os.chroot()用法及代码示例
- Python os.stat()用法及代码示例
- Python sympy.tan()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.write()用法及代码示例
- Python sympy.sin()用法及代码示例
注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python | sympy.divmod() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。