Learn Python, Microsoft 365 and Google Workspace
Connect with me: Youtube | LinkedIn | WhatsApp Channel | Web | Facebook | Twitter
Python lists have a built-in list.sort() method that modifies the list in-place. There is also a sorted() built-in function that builds a new sorted list from an iterable.
We explore the various techniques for sorting data using Python.
Sorts the elements of a list in place, meaning it modifies the original list directly.
Syntax:
list.sort(key=None, reverse=False)
Parameters:
key (optional): A function that takes a single element from the list and returns a key to be used for sorting. This allows for custom sorting criteria. reverse (optional): A boolean value. If True, sorts the list in descending order. Defaults to False (ascending order).
# Creating a list of numbers
numbers = [5, 2, 9, 1, 5, 6]
# Sorting the list in ascending order
numbers.sort()
print("Sorted in ascending order:", numbers)
# Sorting the list in descending order
numbers.sort(reverse=True)
print("Sorted in descending order:", numbers)
Sorted in ascending order: [1, 2, 5, 5, 6, 9]
Sorted in descending order: [9, 6, 5, 5, 2, 1]
# List of names
names = ["John", "Alice", "Bob", "Charlie"]
# Sorting alphabetically
names.sort()
print("Alphabetically sorted:", names)
# Sorting in reverse alphabetical order
names.sort(reverse=True)
print("Reverse alphabetical order:", names)
Example:
The sorted()
function in Python is used to return a new sorted list from an iterable (like a list, tuple, or string) without modifying the original list.
Syntax:
sorted(iterable, key=None, reverse=False)
Parameters:
iterable: The iterable object to be sorted (e.g., a list, tuple, string). key (optional): A function that takes a single element from the iterable and returns a key to be used for sorting. This allows for custom sorting criteria. reverse (optional): A boolean value. If True, sorts the iterable in descending order. Defaults to False (ascending order).
# Original list
numbers = [5, 2, 9, 1, 5, 6]
# Sorting in ascending order
sorted_numbers = sorted(numbers)
print("Sorted in ascending order:", sorted_numbers)
# Sorting in descending order
sorted_numbers_desc = sorted(numbers, reverse=True)
print("Sorted in descending order:", sorted_numbers_desc)
# Original list remains unchanged
print("Original list:", numbers)
Sorted in ascending order: [1, 2, 5, 5, 6, 9]
Sorted in descending order: [9, 6, 5, 5, 2, 1]
Original list: [5, 2, 9, 1, 5, 6]
# List of names
names = ["John", "Alice", "Bob", "Charlie"]
# Sorting alphabetically
sorted_names = sorted(names)
print("Alphabetically sorted:", sorted_names)
# Sorting in reverse alphabetical order
sorted_names_desc = sorted(names, reverse=True)
print("Reverse alphabetical order:", sorted_names_desc)
You can use the key
parameter to sort based on custom criteria.
# Sorting words by length
words = ["apple", "banana", "kiwi", "grape"]
# Sorting by word length (shortest to longest)
sorted_words = sorted(words, key=len)
print("Sorted by word length:", sorted_words)
Sorted by word length: ['kiwi', 'grape', 'apple', 'banana']
Examples:
Both list.sort() and sorted() have a key parameter to specify a function (or other callable) to be called on each list element prior to making comparisons.
Examples:
Both list.sort() and sorted() accept a reverse parameter with a boolean value. This is used to flag descending sorts.
Which of the following statements sorts a list in descending order?
What is the output of the following code?
numbers = [3, 1, 4, 2]
numbers.sort(key=lambda x: -x)
print(numbers)
How would you sort a list of tuples by the second element of each tuple?
#49 How can you sort a list of dictionaries based on a specific key?
people = [ {‘name’: ‘Ali’, ‘age’: 25}, {‘name’: ‘Ahmad’, ‘age’: 30}, {‘name’: ‘Hamza’, ‘age’: 20} ]
Watch these Videos Tutorial for the Answer: https://youtube.com/shorts/dRNiLVkPtRg?feature=share #python #pythonpoll #MCQsTest #yasirbhutta
a. sorted_people = sorted(people, key=’name’) b. sorted_people = sorted(people, key=’age’) c. sorted_people = sorted(people, key=lambda x[‘name’]) d. sorted_people = sorted(people, key=lambda x: x[‘age’])
#48 Which of the following is an example of using the sorted() function to sort a list of strings in reverse alphabetical order?
Watch these Videos Tutorial for the Answer: https://youtube.com/shorts/qBBEjpyAJcM?feature=share
https://youtube.com/shorts/Ic58XdR9TS0?feature=share
#python #pythonpoll #MCQsTest #yasirbhutta
a. sorted_fruits = sorted(fruits) b. sorted_fruits = sorted(fruits, reverse=True) c. sorted_fruits = sorted(fruits, key=len) d. sorted_fruits = sorted(fruits, key=lambda x: x[-1], reverse=True
#45 What is the difference between the sort() and sorted() functions in Python?
a. sort() is a built-in function that returns a new sorted list, while sorted() is a method that sorts the list in-place.
b. sort() can only be used on any iterable, while sorted() can be used on lists.
c. sort() is a method that sorts the list in-place, while sorted() is a built-in function that returns a new sorted list.
d. sort() returns a new list, while sorted() returns None.
Which of the following is an example of using the sort() method to sort a list of integers in descending order? a. nums.sort(reverse=True) b. nums = sort(nums, reverse=True) c. sorted(nums, reverse=True) d. nums = nums.sort(reverse=True)
Which of the following is an example of using the sorted() function to sort a list of strings in reverse alphabetical order? a. sorted_fruits = sorted(fruits) b. sorted_fruits = sorted(fruits, reverse=True) c. sorted_fruits = sorted(fruits, key=len) d. sorted_fruits = sorted(fruits, key=lambda x: x[-1], reverse=True)
How can you sort a list of tuples based on the second element of each tuple? a. sorted_items = sorted(items, key=lambda x: x[2]) b. sorted_items = sorted(items, key=lambda x: x[1]) c. sorted_items = sorted(items, key=lambda x: x[-1]) d. sorted_items = sorted(items, key=lambda x: x[0])
1. Sorting Numbers:
list.sort()
and sorted()
.2. Sorting Strings:
3. Sorting Tuples:
4. Sorting Dictionaries:
5. Custom Sorting:
6. Sorting Algorithms:
7. Advanced Sorting: