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