invert 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 reverse list
systems = ['Windows', 'macOS', 'Linux']
print('Original List:', systems)
reversed_list = systems[::-1]
print('Updated List:', reversed_list)
Example 4: python invert an array
>>> L = [0,10,20,40]
>>> L[::-1]
[40, 20, 10, 0]
Example 5: reverse array python
>>> array=[0,10,20,40]
>>> for i in reversed(array):
... print(i)
Example 6: python how to invert an array
revArray = list(reversed(array))