how to invert an array in python 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]
Example 3: reverse array python
>>> array=[0,10,20,40]
>>> for i in reversed(array):
... print(i)
Example 4: python how to invert an array
revArray = list(reversed(array))