借助於sympy.multiplicity()方法,我們可以找到最大整數m,使得p升為m的冪會除以n,其中p和n是該方法的參數
用法:
multiplicity(p, n)
參數:
p – 它表示一個整數。
n – 它表示一個整數。
返回值:
返回最大整數m,以使p^m除以n。
示例1:
# import multiplicity() method from sympy
from sympy import multiplicity
p = 2
n = 64
# Use multiplicity() method
multi_p_n = multiplicity(p, n)
print("{} is the largest integer such that {}^{} divides {}.".
format(multi_p_n, p, multi_p_n, n))
輸出:
6 is the largest integer such that 2^6 divides 64.
示例2:
# import multiplicity() method from sympy
from sympy import multiplicity
p = 3
n = 111
# Use multiplicity() method
multi_p_n = multiplicity(p, n)
print("{} is the largest integer such that {}^{} divides {}.".
format(multi_p_n, p, multi_p_n, n))
輸出:
1 is the largest integer such that 3^1 divides 111.
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python os.abort()用法及代碼示例
- Python os.WEXITSTATUS()用法及代碼示例
- Python os.fchmod()用法及代碼示例
- Python PIL getpixel()用法及代碼示例
- Python PIL putpixel()用法及代碼示例
- Python os.sysconf()用法及代碼示例
- Python os.confstr()用法及代碼示例
- Python os._exit()用法及代碼示例
- Python cmath.log()用法及代碼示例
- Python Tensorflow cos()用法及代碼示例
- Python sympy.rf()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python | sympy.multiplicity() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。