📜  SymPy | Python中的 Prufer.rank()

📅  最后修改于: 2022-05-13 01:55:33.233000             🧑  作者: Mango

SymPy | Python中的 Prufer.rank()

Prufer.rank() : rank()是一个 sympy Python库函数,它返回 Prufer 序列的排名。

代码 #1:rank() 示例

# Python code explaining
# SymPy.Prufer.rank()
  
# importing SymPy libraries
from sympy.combinatorics import Permutation, Cycle
from sympy.combinatorics.prufer import Prufer
  
# Using from 
# sympy.combinatorics.prufer.Prufer.rank()
  
# Creating Prufer
a = Prufer([1, 2, 3], [2, 4, 5])
  
# rank value
print ("Prufer a rank : ", a.rank)

输出 :

代码 #2:rank() 示例

# Python code explaining
# SymPy.Prufer.rank()
  
# importing SymPy libraries
from sympy.combinatorics import Permutation, Cycle
from sympy.combinatorics.prufer import Prufer
  
# Using from 
# sympy.combinatorics.prufer.Prufer.rank()
  
# Creating Prufer
b = Prufer([1, 2, 3, 2, 4, 5], [6, 7], [8])
  
# rank value
print ("Prufer b rank : ", b.rank)

输出 :