5 Easy Ways to Sort a Dictionary in Python

Pankaj Singh 11 Jan, 2024 • 4 min read

Introduction

Sorting a dictionary in Python can be tricky, especially for beginners. Python dictionaries are versatile and powerful data structures that allow you to store and retrieve key-value pairs efficiently. They provide a flexible way to represent and manipulate data, offering dynamic resizing, quick lookup, and support for a wide range of data types as both keys and values. 

With features like essential uniqueness and the ability to iterate over items, Python dictionaries are crucial components in various programming tasks, from managing configurations to organizing complex data structures. Their ease of use and extensive functionality make them a cornerstone in Python programming, facilitating tasks ranging from data processing to algorithm implementation. However, there are several easy and efficient ways to achieve this. In this article, we will explore 5 different methods to sort a dictionary in Python, along with their pros and cons.

Sort a Dictionary in Python

Using the Sorted() Function

The sorted() function is a versatile tool that can be used to sort a dictionary in Python based on its keys or values. This method is simple and effective, making it a popular choice among Python developers. Here’s a simple example of how to use the sorted() function to sort a dictionary by its keys:

Example

# Sample code for sorting a dictionary by keys using the sorted() function

marks = {'Tarun': 98, 'Himanshu': 90, 'Harshit': 95}

sorted_dict = {k: marks[k] for k in sorted(marks)}

print(sorted_dict)

Output

{‘Harshit’: 95, ‘Himanshu’: 90, ‘Tarun’: 98}

Using the Itemgetter() Function

The itemgetter() function from the operator module can be used to sort a dictionary in Python by its values. This method provides a more flexible approach to sorting, allowing developers to customize the sorting criteria based on their specific requirements. Here’s an example of how to use the itemgetter() function to sort a dictionary by its values:

Example

# Sample code for sorting a dictionary by values using the itemgetter() function

import operator

marks = {'Tarun': 98, 'Himanshu': 90, 'Harshit': 95}

sorted_dict = dict(sorted(marks.items(), key=operator.itemgetter(1)))

print(sorted_dict)

Output

{‘Himanshu’: 90, ‘Harshit’: 95, ‘Tarun’: 98}

Using List Comprehensions

List comprehensions offer a concise and elegant way to sort a dictionary in Python. Converting the dictionary into a list of tuples makes it easier to apply sorting operations using list comprehensions. Here’s an example of how to use list comprehensions to sort a dictionary by its keys:

Example

# Sample code for sorting a dictionary by keys using list comprehensions

marks = {'Tarun': 98, 'Himanshu': 90, 'Harshit': 95}

sorted_dict = {k: v for k, v in sorted(marks.items())}

print(sorted_dict)

Output:-

{‘Harshit’: 95, ‘Himanshu’: 90, ‘Tarun’: 98}

Using the OrderedDict Class

The OrderedDict class from the collections module can be used to create a sorted dictionary representation. This method preserves the original insertion order of the dictionary while providing a sorted view of its contents. Here’s an example of how to use the OrderedDict class to sort a dictionary by its keys:

Example

# Sample code for sorting a dictionary by keys using the OrderedDict class

from collections import OrderedDict

marks = {'Tarun': 98, 'Himanshu': 90, 'Harshit': 95}

sorted_dict = OrderedDict(sorted(marks.items()))

print(sorted_dict)

Output

OrderedDict([(‘Harshit’, 95), (‘Himanshu’, 90), (‘Tarun’, 98)])

Using the Pandas Library

For developers working with large datasets, the Pandas library offers a powerful solution for sorting dictionaries in Python. By leveraging the DataFrame data structure, Pandas provides efficient methods for sorting and manipulating dictionary-like objects. Here’s an example of how to use the Pandas library to sort a dictionary by its keys:

Example

# Sample code for sorting a dictionary by keys using the Pandas library

import pandas as pd

marks = {'Tarun': 98, 'Himanshu': 90, 'Harshit': 95}

sorted_dict = pd.DataFrame(list(marks.items()), columns=['Key', 'Value']).sort_values('Value').set_index('Key').to_dict()['Value']

print(sorted_dict)

Output

{‘Himanshu’: 90, ‘Harshit’: 95, ‘Tarun’: 98}

Tabular Comparison: Sort a Dictionary in Python

Here’s a comparison of 5 Easy Ways to Sort a Dictionary in Python in tabular format:

MethodDescriptionProsCons
Sorted() FunctionUtilizes the built-in sorted() function– Simple and easy to use– Creates a new list; may not be memory-efficient
Itemgetter() FunctionLeverages itemgetter from the operator module– Efficient for sorting based on specific keys– Requires importing the operator module
List ComprehensionsUses list comprehensions to create a new dictionary– Provides flexibility for custom sorting criteria– Requires additional syntax and understanding
OrderedDict ClassUtilizes the OrderedDict class from the collections module– Preserves insertion order– Slightly slower than regular dictionaries
Pandas LibraryEmploys the sort_values() method from the Pandas library– Ideal for handling large datasets– Adds dependency on the Pandas library

Choose the method that best suits your specific sorting requirements and the characteristics of your data.

Conclusion

In this article, we explored 5 easy and efficient ways to sort a dictionary in Python. Each method offers its advantages and can be tailored to suit different use cases. By understanding these techniques, developers can gain a deeper insight into the versatility of Python’s data manipulation capabilities. Whether it’s using built-in functions like sorted(), leveraging external libraries like Pandas, or implementing custom sorting logic, Python provides a wide array of options for sorting dictionaries.

I hope this article helped you understand how to sort a dictionary in Python. Are you ready to take your Python skills to the next level? Elevate your career with the Certified AI & ML BlackBelt Plus Program. Experience personalized learning, 1:1 mentorship, real-world projects, and top-rated guidance. Secure your future in AI/ML — Enroll Now!

Pankaj Singh 11 Jan 2024

Frequently Asked Questions

Lorem ipsum dolor sit amet, consectetur adipiscing elit,

Responses From Readers

Clear