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)]

3.75
4

                                    # 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)

3.75 (4 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
sort by first element of tuple python sort using second element in tuple python sort a list of tuples in python depending on second element how to sort tuple in list based on first element sort on the basis of second element in list python Sort a list of tuples by 1st item python list of tuples sort by first element sort list of tuples python by first element order descending python sort tuple by first then second sort based on first element in python sort tuple in python maintaing order based on first element only sort a list of tuples in python according to 1st element sort tuple in python based on first element sort list by first element of tuple python sort by second list item python how to sort list of tuples in python by first element python sort by first element python sort based on first element sort on second element in tuple python python sort by first element in list sort a list of tuples by first value python sort list by first element of tuple sort list by second element of tuple python python sort only by first element in tuple sort tuples by first value python sort after 1st value in list of tuples sort with first value python sort a list by second element python sort by second element of tuples in list python sort list by second element python sort a list of tuple on first element ython python sort tuple first element sort list of tuples python by second element sort a list of tuples python by first element python sort list based on second element sort by second element in tuple python python sort array of tuples by first element and second element sort by first value in tuple python python sort list of tuples based on first element python sort second element in tuple python sort list tuples second element python sort list of tuples by first element then second element can you sort list by tuples by first element sort based on the first element in tuple python how to sort a list by second element python sort based on second element in list python python sort list of tuples by n first element python sort list of tuples by first element descending sort list by second value in tuple sort tuples by first value and second value python sort list of tuples by first value pyhton python sort list based on first element sort a list of tuple base on 1 first python sort list based on second element python sort only the first element of list of tuple sort only the first element of tuple python sort by first element then second python sort tuple second element sort tuple with first elememnt python how to sort list of tuples in python by second element sort tuples based on 2nd element python sort list of tuples based on first value python decreasing order sort list of tuples based on first value python sort list of tuple by first index sort list of tuple by first element python sort list of tuple by first element python sort list of tuples by first and second element how to sort list by second element python python inserstion sort by first element in tuple python sort based on first element sort tuple based on first element sort tuple by second element python sorting tuple based on the first number python sort tuple python based on the first number python sort tuples based on first number python sort tuple python sort tuple list by first and then second python sort tuple list pyhton sort list of tuples by first value sort by ith tuple python set of tuples sort by first element python python sort first tuple value sorting a list of tuples depending on the second element python python sort tuple by value how to sort list of tuples by first value how to find tuple is in ascending/ descending order python python sort tuple by second value sorting an array of tuples sort a list of tuples by second value python sort list of tuple by first value how to print first element of tuple in python order list of tupple sort list by second element of tuple sort tuple list python python how to sort tuple by month sort list of tuples by first element sort tuple python by second value sort list of tuples by second element sort a list of tuples by first value python sort by second element of tuple python python sort tuples by second element how to sort list of tuple baes on tuple second element python order list of tuples by first element python sort tuple by second element sort by tuple element python sort a list of tuples by second element list of tuples sort by second element sort tuple by first element python sort lis of tuples by value python python sort list of tuples by first element sort a list of tuples by the second element sort tuple list by second element sort tuples by values python sort array of tuples by second element sort a tuple of tuples by 2nd item sort list of tuples python by first element how to sort a list of tuples based on first value python sort list of tuples based on second element python sort list of tuples by second element python sort tuple list by second element python sort by second element in tuple python sort a tuple in second element sort list of tuples by second element python sort by value in tuple python python sort array of tuples by first element python sort tuples by first element python sort list by value in tuple sort python list by second tuple value sort python list by tuple value sort list of tuple by second element python sort a list of tuples python first sort list of tuples by first element python how to sort a tuple by its second element in python python sort a list of tuples by second element sort based on 1st element in a tuple sort by second tuple index python sort list of tuplr function in python sort list of tuples in python how to sort tuples based on first value python sort tuple list by second element python python tuple list sort by first element sort a list of tuples python sort a list of tuples by first element sort tuple by value of first element python sort list by value of tuple python sort by first element in tuple python sort tuple by first element sort by first element in tuple python sort a list of tuples python order list of tuples python order tuple by value how to sort a tuple list in python Which HTML element is used to define list items? Count elements in first Array with absolute difference greater than K with an element in second Array python list of tuples sort python sort tuple of list how to sort a list by the second element in tuple python python tuple sort by value
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source