Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python sort a list of tuples

my_list =[("p",23),("m",2),("q",19),("f",77),("a",50),]
# we will use the 'sort' method
my_list.sort(reverse = True, key = lambda t: t[1])
# the result will be
my_list
[('f', 77), ('a', 50), ('p', 23), ('q', 19), ('m', 2)]
Comment

pyhon sort a list of tuples

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

sort tuple list python

# To have largest first and smalest last
sorted([('abc', 121),('abc', 231),('abc', 148), ('abc',221)], key=lambda x: x[1], reverse=True)
Comment

how to sort tuples in list python

items =[
    ("product1",10),
    ("product2", 2),
    ("product3", 5)
]

def value(item):     #the function return only the numbers
    return item[1]
  
items.sort(key=value)  #don't call the function but passing it
print(items)


#OR by using Lamda Function

items.sort(key= lambda item: item[1])

# Output >>> [('product2', 2), ('product3', 5), ('product1', 10)]
Comment

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
Comment

PREVIOUS NEXT
Code Example
Python :: jalali date to gregorian date 
Python :: python download image from url 
Python :: DeprecationWarning: executable_path has been deprecated, please pass in a Service object 
Python :: how to select all but last columns in python 
Python :: translate sentences in python 
Python :: how to strip quotation marks in python 
Python :: Tk.destroy arguments 
Python :: database default code in settings django 
Python :: python get cpu cores 
Python :: python 3 pm2 
Python :: finding duplicate characters in a string python 
Python :: how to increase the figure size in matplotlib 
Python :: return count of unique values pandas 
Python :: django register models 
Python :: autoslugfield django 3 
Python :: pandas percent change 
Python :: discord.py add role on member join 
Python :: how copy and create same conda environment 
Python :: split string form url last slash 
Python :: max of two columns pandas 
Python :: python hand tracking module 
Python :: pandas change last row 
Python :: join list with comma python 
Python :: flask boiler plate 
Python :: numpy merge arrays 
Python :: create new django app 
Python :: python iterate dictionary in reverse order 
Python :: --disable warning pytest 
Python :: how to plot roc curve in python 
Python :: tkfiledialog python 3 example 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =