In order to sort a list of elements in descending order, we can make use of the sort() method by passing the option reverse=True
Example:list_of_numbers = [22, 45, 245, 64, 345, 66, 33, 68, 24, 27, 78]
list_of_numbers.sort(reverse=True)
print(list_of_numbers)
Output:
[345, 245, 78, 68, 66, 64, 45, 33, 27, 24, 22]

Read Documentaion:
List Objects - List.sort(): https://docs.python.org/3/library/stdtypes.html#list.sort
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- How to convert int to ASCII in Python
- How to make use of SQLite Module in Python?
- Split a String into Sub-string and Parse in Python
- Python: Pandas Rename Columns with List Example
- How to run Python file from Mac Terminal
- How to Exit a Loop in Python Code
- Python: How to Plot a Histogram using Matplotlib and data as list
- MD5 Hashing in Python
- Jupyter: Safari Cant Connect to the Server localhost:8888/tree
- Fix: AttributeError: str object has no attribute decode. Did you mean: encode?[Python]
- How to Read a binary File with Python
- How to add two float numbers in Python
- Python: How to install YAML Package
- Python: How to Save Image from URL
- What is Markdown in Jupyter Notebook with Examples
- How to change the Python Default version
- 33: Python Program to send an email vid GMail
- How to comment code in Python
- How to Fix AttributeError in Python
- Fix: error: Jupyter command `jupyter-nbconvert` not found [VSCode]
- How to comment out a block of code in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- Import Other Python Files Examples
- Python: How to add Progress Bar in Console with Examples
- 3 Ways to convert bytes to String in Python
More Posts:
- Java - PatternSyntaxException - Java
- [Solution] Alpine Docker apt-get: not found - Docker
- 86 Gmail keyboard shortcuts that you may find Advantageous - Google
- Error 50057 - User account is disabled. The account has been disabled by an administrator [Microsoft - Teams - Azure] - Microsoft
- How to add Quotes at the Start and End of Each Line in Notepad++ - NotepadPlusPlus
- Android Wifi WPA2/WPA Connects and Disconnects issue - Android
- [Fix] zsh: command not found: nvm - MacOS
- [Solved] Error launching studio - Android-Studio