Answers for "sort by tuple element python"

2

sort tuple by first element python

a = [(5,8), (3,4), (9,7)]

#sort by first element in tuple
result = sorted(a, key=lambda tup: tup[0])

#OR to do inplace sort:

a.sorted(key = lambda tup: tup[0])

# output
[(3, 4), (5, 8), (9, 7)]
Posted by: Guest on April-30-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
0

sort by tuple

sorted_by_second = sorted(data, key=lambda tup: tup[1])
Posted by: Guest on November-25-2020
0

pyhon sort a list of tuples

# 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
Posted by: Guest on August-31-2020

Code answers related to "sort by tuple element python"

Python Answers by Framework

Browse Popular Code Answers by Language