借助於sympy.totient()方法,我們可以找到給定整數的Euler拉伸函數或phi(n)。歐拉totient函數是小於或等於給定整數的正整數的數量,該整數相對於其為素數。換句話說,它是範圍1中的整數k
用法: totient(n)
參數:
n – 它表示一個整數。
返回值:返回小於或等於該整數n的整數的整數。
示例1:
# import totient() method from sympy
from sympy.ntheory.factor_ import totient
n = 24
# Use totient() method
totient_n = totient(n)
print("phi({}) = {} ".format(n, totient_n)) # 1 5 7 11 13 17 19 23
輸出:
phi(24) = 8
示例2:
# import totient() method from sympy
from sympy.ntheory.factor_ import totient
n = 19
# Use totient() method
totient_n = totient(n)
print("phi({}) = {} ".format(n, totient_n))
輸出:
phi(19) = 18
相關用法
- Python set()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python next()用法及代碼示例
- Python os.ttyname()用法及代碼示例
- Python os.pread()用法及代碼示例
- Python os.fsencode()用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python os.system()用法及代碼示例
- Python os.getloadavg()用法及代碼示例
- Python os.isatty()用法及代碼示例
- Python PIL tobytes()用法及代碼示例
- Python PIL getcolors()用法及代碼示例
- Python PIL putdata()用法及代碼示例
- Python os.get_inheritable()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python | sympy.totient() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。