.reverse on array python code example
Example 1: python how to invert an array
revArray = array[::-1]
Example 2: reverse an array pyton
array=[0,10,20,40]
reversed_array=array[::-1]
Example 3: python invert an array
>>> L = [0,10,20,40]
>>> L[::-1]
[40, 20, 10, 0]