write a program that takes an array the size n and gives the output in reverse order python code example
Example 1: print array in reverse python
>>> lst = [1, 2, 3, 4, 5]
>>> lst[::-1]
[5, 4, 3, 2, 1]
Example 2: python invert an array
>>> L = [0,10,20,40]
>>> L[::-1]
[40, 20, 10, 0]