Python Reversing List
# Python3.x Python Reversing a List
[ Python3 Examples](#)
Define a list and reverse it.
For example:
Before reversal: list = [10, 11, 12, 13, 14, 15]
After reversal: [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](#)
YouTip