How to Reverse A List in Python

In this article, you will learn how to reverse a list in python in Python. Let’s say you have a list named ‘a’ with value…

The post How to Reverse A List in Python appeared first on CodeSource.io.


This content originally appeared on CodeSource.io and was authored by Ariessa Norramli

In this article, you will learn how to reverse a list in python in Python.

Let’s say you have a list named ‘a’ with value [1, 2, 3, 4, 5].

a = [1, 2, 3, 4, 5]

In order to reverse a list, you can use the list.reverse() method.

a = [1, 2, 3, 4, 5]

# Reverse the list named 'a'
a.reverse()

print(a)
# => [5, 4, 3, 2, 1]

Note: The list.reverse() method functions by reversing the elements in a list.

The post How to Reverse A List in Python appeared first on CodeSource.io.


This content originally appeared on CodeSource.io and was authored by Ariessa Norramli


Print Share Comment Cite Upload Translate Updates
APA

Ariessa Norramli | Sciencx (2021-02-24T10:25:30+00:00) How to Reverse A List in Python. Retrieved from https://www.scien.cx/2021/02/24/how-to-reverse-a-list-in-python/

MLA
" » How to Reverse A List in Python." Ariessa Norramli | Sciencx - Wednesday February 24, 2021, https://www.scien.cx/2021/02/24/how-to-reverse-a-list-in-python/
HARVARD
Ariessa Norramli | Sciencx Wednesday February 24, 2021 » How to Reverse A List in Python., viewed ,<https://www.scien.cx/2021/02/24/how-to-reverse-a-list-in-python/>
VANCOUVER
Ariessa Norramli | Sciencx - » How to Reverse A List in Python. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/02/24/how-to-reverse-a-list-in-python/
CHICAGO
" » How to Reverse A List in Python." Ariessa Norramli | Sciencx - Accessed . https://www.scien.cx/2021/02/24/how-to-reverse-a-list-in-python/
IEEE
" » How to Reverse A List in Python." Ariessa Norramli | Sciencx [Online]. Available: https://www.scien.cx/2021/02/24/how-to-reverse-a-list-in-python/. [Accessed: ]
rf:citation
» How to Reverse A List in Python | Ariessa Norramli | Sciencx | https://www.scien.cx/2021/02/24/how-to-reverse-a-list-in-python/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.