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


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


借助于sympy.divisor_count()方法,我们可以计算给定整数的除数。

用法: divisor_count(n, modulus=1)

参数:
n – 它表示一个整数。
modulus – 默认情况下设置为1。如果模量不为1,则仅对可被模数整除的那些计数。


返回值:返回给定数字的除数计数。

示例1:

# import divisor_count() method from sympy 
from sympy import divisor_count 
  
n = 84
  
# Use divisor_count() method  
divisor_count_n = divisor_count(n)  
      
print("The number of divisors of {} : {}".format(n, divisor_count_n))

输出:

The number of divisors of 84 : 12

示例2:

# import divisor_count() method from sympy 
from sympy import divisor_count 
  
n = 12
  
# Use divisor_count() method  
divisor_count_n = divisor_count(n, modulus = 2)  
      
print("The number of divisors of {} : {}".format(n, divisor_count_n))

输出:

The number of divisors of 12 : 4


相关用法


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