借助于sympy.divisors()方法,默认情况下,我们可以按排序顺序找到给定数字的所有除数。
用法: divisors(n, generator=False)
参数:
n – 它表示一个整数。
generator – 如果generator为True,则返回无序生成器对象,否则返回除数的排序列表。默认情况下为False。
返回值:返回给定整数的所有除数的列表。
示例1:
# import divisors() method from sympy
from sympy import divisors
n = 84
# Use divisors() method
divisors_n = divisors(n)
print("The divisors of {} : {}".format(n, divisors_n))
输出:
The divisors of 84 : [1, 2, 3, 4, 6, 7, 12, 14, 21, 28, 42, 84]
示例2:
# import divisors() method from sympy
from sympy import divisors
n = -210
# Use divisors() method
divisors_n = list(divisors(n, generator = True))
print("The divisors of {} : {}".format(n, divisors_n))
输出:
The divisors of -210 : [1, 2, 3, 6, 5, 10, 15, 30, 7, 14, 21, 42, 35, 70, 105, 210]
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
- Python os.fchmod()用法及代码示例
- Python PIL getpixel()用法及代码示例
- Python PIL putpixel()用法及代码示例
- Python os.sysconf()用法及代码示例
- Python os.confstr()用法及代码示例
- Python os._exit()用法及代码示例
- Python cmath.log()用法及代码示例
- Python Tensorflow cos()用法及代码示例
- Python sympy.rf()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.divisors() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。