In Python how do I sort a list of dictionaries by a certain value of the dictionary + alphabetically?
-
Ok, here's what I'm trying to do... I know that itemgetter() sort could to alphabetical sort easy, but if I have something like this: [{'Name':'TOTAL', 'Rank':100}, {'Name':'Woo Company', 'Rank':15}, {'Name':'ABC Company', 'Rank':20}] And I want it sorted alphabetically (by Name) + include the condition that the one with Name:'TOTAL' should be listed last in the sequence, like this: [{'Name':'ABC Company', 'Rank':20}, {'Name':'Woo Company', 'Rank':15}, {'Name':'TOTAL', 'Rank':100}] How would I do that?
-
Answer:
The best approach here is to decorate the sort key... Python will sort a tuple by the tuple components in order, so build a tuple key with your sorting criteria: sorted(list_of_dicts, key=lambda d: (d['Name'] == 'TOTAL', d['Name'].lower())) This results in a sort key of: (True, 'total') for {'Name': 'TOTAL', 'Rank': 100} (False, 'woo company') for {'Name': 'Woo Company', 'Rank': 15} (False, 'abc company') for {'Name': 'ABC Company', 'Rank': 20} Since False sorts earlier than True, the ones whose names aren't TOTAL will end up together, then be sorted alphabetically, and TOTAL will end up at the end.
Crazy Serb at Stack Overflow Visit the source
Other answers
>>> lst = [{'Name':'TOTAL', 'Rank':100}, {'Name':'Woo Company', 'Rank':15}, {'Name':'ABC Company', 'Rank':20}] >>> lst.sort(key=lambda d: (d['Name']=='TOTAL',d['Name'].lower())) >>> print lst [{'Name': 'ABC Company', 'Rank': 20}, {'Name': 'Woo Company', 'Rank': 15}, {'Name': 'TOTAL', 'Rank': 100}]
Dave
Use the http://wiki.python.org/moin/HowTo/Sorting#Sortingbykeys parameter of sort or sorted. For example: dicts = [ {'Name':'TOTAL', 'Rank':100}, {'Name':'Woo Company', 'Rank':15}, {'Name':'ABC Company', 'Rank':20} ] def total_last(d): if d['Name'] == 'TOTAL': return '\xff\xff\xff\xff\xff\xff' return d['Name'].lower() import pprint pprint.pprint(sorted(dicts, key = total_last)) >python sort_dict.py [{'Name': 'ABC Company', 'Rank': 20}, {'Name': 'Woo Company', 'Rank': 15}, {'Name': 'TOTAL', 'Rank': 100}]
Aaron Maenpaa
Well, I would sort it in multiple passes, using list's sort method. list = [{'Name':'TOTAL', 'Rank':100}, {'Name':'Woo Company', 'Rank':15}, {'Name':'ABC Company', 'Rank':20}] list.sort(key = lambda x: x['Name']) # Sorted by Name, alphabetically list.sort(key = lambda x: 'b' if x['Name'] == 'TOTAL' else 'a')
Mike Hordecki
Related Q & A:
- How do I convert a PDF file to PDF/A in Delphi?Best solution by softwarerecs.stackexchange.com
- How can I sort a column in a DataGrid?Best solution by Stack Overflow
- How can I find a list of births in Wiesbaden, Germany?Best solution by Yahoo! Answers
- How do I get a list of yahoo groups?Best solution by Yahoo! Answers
- Where can I see a video being used by a certain camera?Best solution by Quora
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.