Quiz on Python Sorted Function



1. What is the purpose of the sorted() function in Python?
2. Which of the following types can be sorted using the sorted() function?
3. What is the default sorting order of the sorted() function?
4. How can you sort a list in descending order using sorted()?
5. What will be the output of sorted([3, 1, 2])?

Advertisements