inverter um array python code example
Example 1: python how to invert an array
revArray = array[::-1]
Example 2: python invert an array
>>> 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]