

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to sort a nested Python dictionary?
If you have a dictionary of the following format:
{ 'KEY1':{'name':'foo','data':1351,'completed':100}, 'KEY2':{'name':'bar','data':1541,'completed':12}, 'KEY3':{'name':'baz','data':58413,'completed':18} }
And you want to sort by the key, completed within each entry, in a ascending order, you can use the sorted function with a lambda that specifies which key to use to sort the data. For example,
my_collection = { 'KEY1':{'name':'foo','data':1351,'completed':100}, 'KEY2':{'name':'bar','data':1541,'completed':12}, 'KEY3':{'name':'baz','data':58413,'completed':18} } sorted_keys = sorted(my_collection, key=lambda x: (my_collection[x]['completed'])) print(sorted_keys)
This will give the output:
['KEY2', 'KEY3', 'KEY1']
- Related Questions & Answers
- How to create nested Python dictionary?
- How to recursively iterate a nested Python dictionary?
- How to sort a dictionary in Python?
- How to count elements in a nested Python dictionary?
- How to sort a Python dictionary by datatype?
- How to sort a Python dictionary by value?
- Python Convert nested dictionary into flattened dictionary?
- Python - Convert flattened dictionary into nested dictionary
- How to sort a dictionary in Python by keys?
- How to sort a dictionary in Python by values?
- How to access nested Python dictionary items via a list of keys?
- Python Pandas - Convert Nested Dictionary to Multiindex Dataframe
- Convert Nested Tuple to Custom Key Dictionary in Python
- How to define a Python dictionary within dictionary?
- Python - Convert list of nested dictionary into Pandas Dataframe
Advertisements