array reverse python code example

Example 1: python how to invert an array

revArray = array[::-1]

Example 2: print array in reverse python

>>> lst = [1, 2, 3, 4, 5]
>>> lst[::-1]
[5, 4, 3, 2, 1]

Example 3: how to reverse array in python

a = [1,2,3,4]
a = a[::-1]
print(a)
>>> [4,3,2,1]

Example 4: reverse an array pyton

array=[0,10,20,40]
reversed_array=array[::-1]

Example 5: reverse a list in python

a = ['a', 'b', '4', '5', 'd'] #reverse the List
print(list(reversed(a)))

Example 6: reverse list python

list=[1,2,3]
list[::-1]

Tags:

Java Example