借助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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。