📜  pyhon 对元组列表进行排序 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:02.837000             🧑  作者: Mango

代码示例2
# Python program to sort a list of tuples by the second Item 
  
# Function to sort the list of tuples by its second item 
def Sort_Tuple(tup):
    # Getting length of list of tuples
    lst = len(tup)
    for i in range(0, lst):
        for j in range(0, lst-i-1):
            if (tup[j][1] > tup[j + 1][1]):
                temp = tup[j]
                tup[j]= tup[j + 1]
                tup[j + 1]= temp
    return tup