借助于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
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python PIL putalpha()用法及代码示例
- Python os.isatty()用法及代码示例
- Python os.ttyname()用法及代码示例
- Python os.pread()用法及代码示例
- Python os.fsencode()用法及代码示例
- Python os.system()用法及代码示例
- Python os.getloadavg()用法及代码示例
- Python os.get_inheritable()用法及代码示例
- Python PIL getpalette()用法及代码示例
- Python PIL tobytes()用法及代码示例
- Python PIL getcolors()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.divisor_count() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。