reverse whole list code example
Example 1: how to reverse a list in python
mylist
[1, 2, 3, 4, 5]
mylist[::-1]
[5, 4, 3, 2, 1]
Example 2: how to reverse a list in python
# reversing a list in Python
numbers = [1,2,3,4,5,6,7,8,9]
print(numbers[::-1])