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

sorting tuples

sorted_by_second = sorted(data, key=lambda tup: tup[1])
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 :: find largest 10 number in dataframe 
Python :: python close file 
Python :: make blinking text python1 
Python :: python read pdf 
Python :: print subscript and superscript python 
Python :: ordered dictionary python 
Python :: how to get pygame key 
Python :: python pandas replace not working 
Python :: how to create a virtual environment in python 3 
Python :: change date format python code 
Python :: Make a Basic Face Detection Algorithm in Python Using OpenCV and Haar Cascades 
Python :: redirect if not logged in django 
Python :: image no showing in django 
Python :: pandas not in list 
Python :: series.Series to dataframe 
Python :: numpy roundup to nearest 5 
Python :: read tsv with python 
Python :: how to install whl file in python 
Python :: flask abort return json 
Python :: godot setget 
Python :: python how to check if first character in string is number 
Python :: example of django template for forms 
Python :: Handling Python DateTime timezone 
Python :: django secure secret key 
Python :: Permission denied in terminal for running python files 
Python :: how to find the datatype of a dataframe in python 
Python :: twitter bot python 
Python :: python file count 
Python :: value count in python 
Python :: np argmin top n 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =