借助于sympy.antidivisors()方法,默认情况下,我们可以按排序顺序找到给定编号的anti-divisors。
用法: antidivisors(n, generator=False)
参数:
n – 它表示一个整数。
generator – 如果generator为True,则返回无序的生成器对象,否则返回anti-divisors的排序列表。默认情况下为False。
返回值:返回给定整数的anti-divisors的列表。
示例1:
# import antidivisors() method from sympy
from sympy.ntheory.factor_ import antidivisors
n = 24
# Use antidivisors() method
antidivisors_n = antidivisors(n)
print("The anti-divisors of {} : {}".format(n, antidivisors_n))
输出:
The anti-divisors of 24 : [7, 16]
示例2:
# import antidivisors() method from sympy
from sympy.ntheory.factor_ import antidivisors
n = 128
# Use antidivisors() method
antidivisors_n = antidivisors(n)
print("The anti-divisors of {} : {}".format(n, antidivisors_n))
输出:
The anti-divisors of 128 : [3, 5, 15, 17, 51, 85]
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python sympy.crt()用法及代码示例
- Python os.pipe()用法及代码示例
- Python os.renames()用法及代码示例
- Python os.lseek()用法及代码示例
- Python os.getpgrp()用法及代码示例
- Python os.setregid()用法及代码示例
- Python os.getsid()用法及代码示例
- Python os.nice()用法及代码示例
- Python os.fork()用法及代码示例
- Python os.pwrite()用法及代码示例
- Python os.getgrouplist()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.antidivisors() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。