ItSolutionStuff.com

How to Reverse a List in Python?

By Hardik Savani • October 30, 2023
Python

Hello Friends,

This post is focused on how to reverse sort python list. Here you will learn how to reverse order of list python. you will learn how to reverse sort in python list. we will help you to give an example of how to reverse python list.

There are several ways to reverse order python list. i will give you simple three example to reverse sort with python list. we will use reverse(), sort() and [::-1] to sorting descending order to python list.

Example 1:

main.py

myList = [1, 2, 3, 4, 5]
  
# python list reverse order
myList.reverse()
  
print(myList)

Output:

[5, 4, 3, 2, 1]

Example 2:

main.py

myList = [1, 2, 3, 4, 5]
  
# python list reverse order
myList = myList[::-1]
  
print(myList)

Output:

[5, 4, 3, 2, 1]

Example 3:

main.py

myList = [1, 2, 3, 4, 5]
  
# python list reverse order
myList.sort(reverse=True)
  
print(myList)

Output:

[5, 4, 3, 2, 1]

I hope it can help you...

Tags: Python
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Convert JSON Array to Python List Example

Read Now →

Python Smallest and Largest Numbers in a List Example

Read Now →

How to Get Smallest Number in List Python?

Read Now →

How to Get Largest Number in List Python?

Read Now →

Python Remove Character from List of Strings Example

Read Now →

How to Replace Value in Python List?

Read Now →

Python List Find and Replace Element Example

Read Now →

Python Generate List of Random Strings Example

Read Now →

Python Generate List of Random Numbers Between 0 and 1 Example

Read Now →

How to Get Last 2, 3, 4, 5, 10, etc Elements from List in Python?

Read Now →

How to Convert List to Uppercase in Python?

Read Now →

How to Convert String into List in Python?

Read Now →

How to Remove Duplicate Values from List in Python?

Read Now →

How to Get Unique Elements from List in Python?

Read Now →