借助于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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。