当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python sympy.nP()用法及代码示例


借助于sympy.nP()方法,我们可以计算SymPy中给定长度的排列数。

用法: nP(items, k) 

参数:
items –要在其上计算置换的整数,列表或字符串。
k –一个整数,指定排列的长度。


返回值:返回给定长度的排列数。

示例1:

# import sympy  
from sympy import * 
  
items = "abca"
k = 3
print("Value of k = {} and the items are = {}".format(k, items)) 
   
# Use sympy.nP() method  
permutations = nP(items, k)   
      
print("Permutation : {}".format(permutations))  

输出:

Value of k = 3 and the items are = abca
Permutation : 12

示例2:

# import sympy  
from sympy import * 
  
items = [2, 1, 3, 5, 4] 
k = 3
print("Value of k = {} and the items are = {}".format(k, items)) 
   
# Use sympy.nP() method  
permutations = nP(items, k)   
      
print("Permutation : {}".format(permutations))  

输出:

Value of k = 3 and the items are = [2, 1, 3, 5, 4]
Permutation : 60


相关用法


注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.nP() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。