Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
Python
19.6K+ articles
Python Programs
3.7K+ articles
Python list-programs
1.7K+ articles
Python dictionary-programs
582+ articles
Python string-programs
572+ articles
python-list
427+ articles
Python tuple-programs
212+ articles
Python-list-of-lists
25+ articles
Python-Matrix
14+ articles
Python-sort
54 posts
Recent Articles
Popular Articles
Fastest Way to Sort in Python
Last Updated: 23 July 2025
Sorting is a fundamental operation in Python. Whether we are working with numbers, strings or complex data structures knowing how to sort efficiently is key to optimizing ...
read more
Python
Python Programs
python-basics
Python-sort
Python-Sorted
How to Sort a List Alphabetically in Python?
Last Updated: 23 July 2025
Sorting lists alphabetically is a common task in Python, whether we're organizing names, cleaning data or building an interface. Python makes sorting easy with several bui...
read more
Python
Python Programs
python-list
Python list-programs
Python-sort
Python-Sorted
Sort a list in python
Last Updated: 23 July 2025
Sorting is a fundamental operation in programming, allowing you to arrange data in a specific order. Here is a code snippet to give you an idea about sorting.Python# Initi...
read more
Python
Python Programs
Picked
Python-sort
Sort a Tuple of Custom Objects by Properties in Python
Last Updated: 23 July 2025
We are given a tuple of custom objects and our task is to sort a tuple of custom objects by properties in Python and print the result. In this article, we will see how to ...
read more
Python
Python Programs
python-tuple
Python-sort
Python Sort Nested Dictionary by Multiple Values
Last Updated: 23 July 2025
We are given a nested dictionary and our task is to sort a nested dictionary by multiple values in Python and print the result. In this article, we will see how to sort a ...
read more
Python
Python Programs
Picked
python-dict
Python-sort
Python-nested-dictionary
Sort a list in Python without sort Function
Last Updated: 04 July 2025
Sorting a list in Python means arranging the elements in a specific order (ascending or descending) using custom logic. For example, in a list like [5, 2, 9, 1], we can ma...
read more
Python
Picked
python-basics
Python-sort
Python Program to Sort an array of 0s, 1s and 2s
Last Updated: 12 July 2025
Given an array A[] consisting 0s, 1s and 2s. The task is to write a function that sorts the given array. The functions should put all 0s first, then all 1s and all 2s in l...
read more
Python
Python-sort
Python - Sort Nested keys by Value
Last Updated: 10 May 2023
Sometimes, while working with data records, we can have a problem in which we need to perform the sorting of nested keys of dictionary by the value of occurrence. This can...
read more
Python
Python Programs
Python dictionary-programs
Python-sort
Python - Sort Dictionary by Value Difference
Last Updated: 25 April 2023
Sometimes, while working with Python dictionaries, we can have problem in which in which we need to perform sorting of items on basis of various factors. One such can be o...
read more
Python
Python Programs
Python dictionary-programs
Python-sort
Python - Sort List by Dictionary values
Last Updated: 12 July 2025
Sometimes while working with a Python dictionary, we can have problems in which we need to perform a sort of list according to the corresponding value in the dictionary. T...
read more
Python
Python Programs
Python list-programs
Python-sort
Python | Sort Numerical Records in String
Last Updated: 24 March 2023
Sometimes, while working with Python records we can have a problem that they may occur in name and number format in strings. These may be required to be sorted. This probl...
read more
Python
Python Programs
Python string-programs
Python-sort
Python Program to Sort the list according to the column using lambda
Last Updated: 12 July 2025
We often need to organize data based on a particular value, such as sorting rows in a dataset by a column. Python makes this task simple by using the sorted() function alo...
read more
Python
Python Programs
python-list
Python list-programs
Python-sort
Python | Sort alternate numeric and alphabet list
Last Updated: 22 April 2023
Sometimes, while performing sorting in list, we have a problem in which we need to perform particular type of sorting in which we need to sort in alternate ways in which w...
read more
Python
Python Programs
Python list-programs
Python-sort
Python - Reverse sort Matrix Row by Kth Column
Last Updated: 03 May 2023
Sometimes, while working with data, we can have a problem in which we need to perform sorting of each row of records by some of decisive factor like score. This kind of pr...
read more
Python
Python Programs
Python list-programs
Python-sort
Python-Matrix
Python - Numeric Sort in Mixed Pair String List
Last Updated: 08 April 2023
Sometimes, while working with data records, we can have a problem in which we receive data in custom format, and we need to perform a sort. We can receive both name of per...
read more
Python
Python Programs
Python list-programs
Python-sort
1
2
3
4