how to reverse a python array code example
Example 1: python how to invert an array
revArray = array[::-1]
Example 2: how to reverse array in python
>>> L = [0,10,20,40]
>>> L[::-1]
[40, 20, 10, 0]
revArray = array[::-1]
>>> L = [0,10,20,40]
>>> L[::-1]
[40, 20, 10, 0]