Answers for "python how to go reverse in a list"

6

reverse element in a list in python 3

my_list = [1, 7, 9, 11, 12, 20]
# Reverse a list by using a slice
print(my_list[::-1])
Posted by: Guest on April-18-2020
1

how to reverse array in python

>>> L = [0,10,20,40]
>>> L[::-1]
[40, 20, 10, 0]
Posted by: Guest on March-06-2020

Code answers related to "python how to go reverse in a list"

Python Answers by Framework

Browse Popular Code Answers by Language