python built in function to return a list reverse code example
Example 1: how to reverse a list in python
my_list = [1, 2, 3, 4, 5]
my_list.reverse()
Example 2: print array in reverse python
>>> lst = [1, 2, 3, 4, 5]
>>> lst[::-1]
[5, 4, 3, 2, 1]