SymPy Permutation.run()在Python中的应用

SymPy Permutation.run()在Python中的应用

Permutation.runs() : runs()是一个sympy Python库函数,用于返回permutation的运行情况。

运行 = 变化中的升序序列

语法 : sympy.combinatorics.permutations.Permutation.runs()

返回:排列组合的运行情况。

代码 #1 : runs() 示例

# Python code explaining
# SymPy.Permutation.runs()
  
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
  
# Using from sympy.combinatorics.permutations.Permutation.runs() method 
  
# creating Permutation
a = Permutation([[2, 0], [3, 1]])
  
b = Permutation([1, 3, 5, 4, 2, 0])
  
  
print ("Permutation a - runs form : ", a.runs())
print ("Permutation b - runs form : ", b.runs())

输出 :

Permutation a – runs form : [[2, 3], [0, 1]]
Permutation b – runs form : [[1, 3, 5], [4], [2], [0]]

代码 #2 : runs() 示例

# Python code explaining
# SymPy.Permutation.runs()
  
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
  
# Using from 
# sympy.combinatorics.permutations.Permutation.runs() method 
  
# creating Permutation
a = Permutation([[2, 4, 0], 
                 [3, 1, 2],
                 [1, 5, 6]])
  
  
print ("Permutation a - runs form : ", a.runs())

输出 :

Permutation a – runs form : [[3], [2, 4, 5], [0, 6], [1]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

SymPy 教程