“Pyhon classifica uma lista de tuplas” Respostas de código

Pyhon classifica uma lista de tuplas

sorted([('abc', 121),('abc', 231),('abc', 148), ('abc',221)], key=lambda x: x[1])
Thankful Tiger

Pyhon classifica uma lista de tuplas

# 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
Thankful Tiger

Classifique uma lista de tuplas por um item em Python

lst = [("val1", 2), ("val1", 1)]
lst.sort()
print(lst)
# Output: [('val1', 1), ('val2', 2)]
AttractivePenguin

Respostas semelhantes a “Pyhon classifica uma lista de tuplas”

Perguntas semelhantes a “Pyhon classifica uma lista de tuplas”

Procure respostas de código populares por idioma

Procurar outros idiomas de código