借助于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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。