借助於sympy.antidivisor_count()方法,我們可以找到給定整數的anti-divisors的計數。
用法: antidivisor_count(n)
參數:
n – 它表示一個整數。
返回值:返回給定整數的anti-divisors的計數。
示例1:
# import antidivisor_count() method from sympy
from sympy.ntheory.factor_ import antidivisor_count
n = 24
# Use antidivisor_count() method
antidivisor_count_n = antidivisor_count(n)
print("The number of anti-divisors of {} : {}".format(n, antidivisor_count_n))
輸出:
The number of anti-divisors of 24 : 2
示例2:
# import antidivisor_count() method from sympy
from sympy.ntheory.factor_ import antidivisor_count
n = 128
# Use antidivisor_count() method
antidivisor_count_n = antidivisor_count(n)
print("The number of anti-divisors of {} : {}".format(n, antidivisor_count_n))
輸出:
The number of anti-divisors of 128 : 6
相關用法
- Python set()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python next()用法及代碼示例
- Python Numpy np.fft()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python sympy.nC()用法及代碼示例
- Python os.truncate()用法及代碼示例
- Python sympy.nT()用法及代碼示例
- Python setattr()用法及代碼示例
- Python bytes()用法及代碼示例
- Python object()用法及代碼示例
- Python hash()用法及代碼示例
- Python os.ftruncate()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python | sympy.antidivisor_count() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。