About this question
Ever wondered how to reorder a dictionary based on its values instead of keys? Let's explore a simple and effective way to sort a dictionary by value using Python’s built-in functions.
Ever wondered how to reorder a dictionary based on its values instead of keys? Let's explore a simple and effective way to sort a dictionary by value using Python’s built-in functions.
Log in to share your answer and help other learners.
Log in to answerBest Answer · By JanBask Python Expert
Answered on Apr 16, 2025
Absolutely! Sorting a dictionary by its values in Python is a common task, especially when you need to organize data based on importance, frequency, or size. But since dictionaries themselves are unordered collections (prior to Python 3.7), you’ll need to use a little trick with sorted().
Here's a quick and human-friendly way to do it:
Let’s say you have this dictionary:
my_dict = {'apple': 5, 'banana': 2, 'cherry': 8}If you want to sort it by values (low to high):
sorted_dict = dict(sorted(my_dict.items(), key=lambda item: item[1]))
print(sorted_dict)To sort in reverse (high to low):
sorted_dict = dict(sorted(my_dict.items(), key=lambda item: item[1], reverse=True)) Key Points to Remember:
Why this matters:
This little trick is one of those Python gems that makes your code both efficient and elegant.
Free tutorials and interview questions from industry experts — learn the skill, then get ready to prove it.
Most-read guides across JanBask
Common Python interview questions, answered
Guides, tips and career advice on Python from JanBask experts.
Python How to Become a Python Developer: A Step-by-Step Guide for Beginners
Discover how to become a Python Developer via a practical 7-step guide build projects, maintain clean code, practice daily, and…
Python PCEP Certification Guide: Entry-Level Python Programmer Certification
Explore this PCEP certification guide for insights on cost, exam format, passing score, application, training, and study tips.…
Python Top 50+ Python Projects ideas for Beginners to Advanced
Discover innovative Python project ideas, explore advanced Python projects, and find good Python projects for beginners and…
Python How To Comment Out Multiple Lines In Python Like A Pro
Commenting out code is a common practice among programmers. It allows you to temporarily disable parts of your code without…