当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python sympy.totient()用法及代码示例


借助于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


相关用法


注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.totient() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。