借助於sympy.subfactorial()方法,我們可以在SymPy中找到數字的子因子。數字的子因數由–
用法: subfactorial(n)
參數:
n –它表示要計算其子因子的數字。
返回值:返回數字的子因子i。 e。
示例1:
# import sympy
from sympy import *
n = 4
print("Value of n = {}".format(n))
# Use sympy.subfactorial() method
subfactorial_n = subfactorial(n)
print("Subfactorial of n : {}".format(subfactorial_n))
輸出:
Value of n = 4 Subfactorial of n : 9
示例2:
# import sympy
from sympy import *
n = 9
print("Value of n = {}".format(n))
# Use sympy.subfactorial() method
subfactorial_n = subfactorial(n)
print("Subfactorial of n : {}".format(subfactorial_n))
輸出:
Value of n = 9 Subfactorial of n : 133496
相關用法
- 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.subfactorial() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。