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


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


借助于sympy.antidivisor_count()方法,我们可以找到给定整数的anti-divisors的计数。

用法: antidivisor_count(n)

参数:
n – 它表示一个整数。


返回值:返回给定整数的anti-divisors的计数。

示例1:

# import antidivisor_count() method from sympy 
from sympy.ntheory.factor_ import antidivisor_count 
  
n = 24
  
# Use antidivisor_count() method  
antidivisor_count_n = antidivisor_count(n)  
      
print("The number of anti-divisors of {} : {}".format(n, antidivisor_count_n))

输出:

The number of anti-divisors of 24 : 2

示例2:

# import antidivisor_count() method from sympy 
from sympy.ntheory.factor_ import antidivisor_count 
  
n = 128
  
# Use antidivisor_count() method  
antidivisor_count_n = antidivisor_count(n)  
      
print("The number of anti-divisors of {} : {}".format(n, antidivisor_count_n))

输出:

The number of anti-divisors of 128 : 6


相关用法


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