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


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


借助於sympy.udivisor_count()方法,我們可以計算給定整數的of除數。

用法: udivisor_count(n, modulus=1)

參數:
n – 它表示一個整數。


返回值:返回給定整數的ary除數。

示例1:

# import divisor_count() method from sympy 
from sympy.ntheory.factor_ import udivisor_count 
  
n = 84
  
# Use udivisor_count() method  
udivisor_count_n = udivisor_count(n)  
      
print("The unitary number of divisors of {} : {}".format(n, udivisor_count_n))

輸出:

The unitary number of divisors of 84 : 8

示例2:

# import divisor_count() method from sympy 
from sympy.ntheory.factor_ import udivisor_count 
  
n = 210
  
# Use udivisor_count() method  
udivisor_count_n = udivisor_count(n)  
      
print("The unitary number of divisors of {} : {}".format(n, udivisor_count_n))

輸出:

The unitary number of divisors of 210 : 16


相關用法


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