當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Python SymPy Permutation.ascents()用法及代碼示例

排列.ascents():ascents()是一個sympy Python庫函數,它返回排列中上升的位置。
上升是a [i]的要素

用法: sympy.combinatorics.permutations.Permutation.ascents()

返回:排列中上升的位置


代碼1:ascents()示例

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

輸出:

Permutation a – ascents form : [0, 2]
Permutation b – ascents form : [0, 1]

代碼2:ascents()示例– 2D排列

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

輸出:

Permutation a – ascents form : [1, 2, 4]



相關用法


注:本文由純淨天空篩選整理自noobestars101大神的英文原創作品 Python | SymPy Permutation.ascents() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。