Permutation.list():list()是一个sympy Python库函数,可将排列作为显式列表返回,如果大小小于排列中的最大元素,则可能会修剪未移动的元素。
用法: sympy.combinatorics.permutations.Permutation.list()
返回:排列作为显式列表
代码1:list()示例
# Python code explaining
# SymPy.Permutation.list()
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
# Using from sympy.combinatorics.permutations.Permutation.list() method
# creating Permutation
a = Permutation([[2, 0], [3, 1]])
b = Permutation([1, 3, 5, 4, 2, 0])
print ("Permutation a - list form : ", a.list())
print ("Permutation b - list form : ", b.list())
输出:
Permutation a – list form : [2, 3, 0, 1]
Permutation b – list form : [1, 3, 5, 4, 2, 0]
代码2:list()示例– 2D排列
# Python code explaining
# SymPy.Permutation.list()
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
# Using from sympy.combinatorics.permutations.Permutation.list() method
# creating Permutation
a = Permutation([[2, 4, 0],
[3, 1, 2],
[1, 5, 6]])
print ("Permutation a - list form : ", a.list())
输出:
Permutation a – list form : [3, 2, 4, 5, 0, 6, 1]
相关用法
- Python sympy.S.GoldenRatio用法及代码示例
- Python sympy.nT()用法及代码示例
- Python sympy.Mul()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python Sympy Permutation.max()用法及代码示例
- Python sympy.rf()用法及代码示例
- Python sympy.Mod()用法及代码示例
- Python sympy.csc()用法及代码示例
- Python sympy.det()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.has()用法及代码示例
- Python sympy.eye()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.ff()用法及代码示例
- Python sympy.S()用法及代码示例
注:本文由纯净天空筛选整理自noobestars101大神的英文原创作品 SymPy | Permutation.list() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。