Answers for "sort list of tuple by second element python"

1

how to sort a list by the second element in tuple python

# lists_of_tuples = [('item', 'price'), ('item', 'price'), ('item', 'price')]
def sort_prices(list_of_tuples): #sort the list b*y the price of each tuple
    list_of_tuples.sort(key=lambda x: x[1], reverse=True) #earse the "reverse" part to sort in small to big.
    return list_of_tuples, print(list_of_tuples)
Posted by: Guest on May-17-2020
10

pyhon sort a list of tuples

sorted([('abc', 121),('abc', 231),('abc', 148), ('abc',221)], key=lambda x: x[1])
Posted by: Guest on August-31-2020

Code answers related to "sort list of tuple by second element python"

Python Answers by Framework

Browse Popular Code Answers by Language