Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,844 questions

51,765 answers

573 users

How to sort a list of tuples by multiple columns in Python

2 Answers

0 votes
lst_tuples = [
   (7, 2, 'python'),
   (8, 3, 'c'),
   (3, 5, 'c++'),
   (4, 1, 'c#'),
   (3, 2, 'java'),
   (7, 1, 'go'),
   (1, 2, 'rust'),
]

# Sort by column 0, then by column 1
sorted_lst_tuples = sorted(lst_tuples, key=lambda x: (x[0], x[1]))  

for element in sorted_lst_tuples:
   print(element)
 

 
'''
run:
 
(1, 2, 'rust')
(3, 2, 'java')
(3, 5, 'c++')
(4, 1, 'c#')
(7, 1, 'go')
(7, 2, 'python')
(8, 3, 'c')
 
'''

 



answered Jan 28 by avibootz
0 votes
from operator import itemgetter

lst_tuples = [
   (7, 2, 'python'),
   (8, 3, 'c'),
   (3, 5, 'c++'),
   (4, 1, 'c#'),
   (3, 2, 'java'),
   (7, 1, 'go'),
   (1, 2, 'rust'),
]

# Sort by column 0, then by column 1
sorted_lst_tuples = sorted(lst_tuples, key=itemgetter(0, 1))

for element in sorted_lst_tuples:
   print(element)
 

 
'''
run:
 
(1, 2, 'rust')
(3, 2, 'java')
(3, 5, 'c++')
(4, 1, 'c#')
(7, 1, 'go')
(7, 2, 'python')
(8, 3, 'c')
 
'''

 



answered Jan 28 by avibootz

Related questions

...