my_list =[("p",23),("m",2),("q",19),("f",77),("a",50),]
my_list.sort(reverse = True, key = lambda t: t[1])
my_list
[('f', 77), ('a', 50), ('p', 23), ('q', 19), ('m', 2)]
sorted([('abc', 121),('abc', 231),('abc', 148), ('abc',221)], key=lambda x: x[1])
sorted([('abc', 121),('abc', 231),('abc', 148), ('abc',221)], key=lambda x: x[1], reverse=True)
items =[
("product1",10),
("product2", 2),
("product3", 5)
]
def value(item):
return item[1]
items.sort(key=value)
print(items)
items.sort(key= lambda item: item[1])
def Sort_Tuple(tup):
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