Easy Tutorial
❮ Python Att Dictionary Clear Python String Strip ❯

Python Reverse List

Python3 Examples

Define a list and reverse it.

For example:

Before reversing: list = [10, 11, 12, 13, 14, 15]
After reversing: [15, 14, 13, 12, 11, 10]

Example 1

def Reverse(lst): 
    return [ele for ele in reversed(lst)] 

lst = [10, 11, 12, 13, 14, 15] 
print(Reverse(lst))

The output of the above example is:

[15, 14, 13, 12, 11, 10]

Example 2

def Reverse(lst): 
    lst.reverse() 
    return lst 

lst = [10, 11, 12, 13, 14, 15] 
print(Reverse(lst))

The output of the above example is:

[15, 14, 13, 12, 11, 10]

Example 3

def Reverse(lst): 
    new_lst = lst[::-1] 
    return new_lst 

lst = [10, 11, 12, 13, 14, 15] 
print(Reverse(lst))

The output of the above example is:

[15, 14, 13, 12, 11, 10]

Python3 Examples

❮ Python Att Dictionary Clear Python String Strip ❯