當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python sympy.divisors()用法及代碼示例


借助於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]


相關用法


注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python | sympy.divisors() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。