print a reversed array python code example
Example 1: how to reverse array in python
>>> L = [0,10,20,40]
>>> L[::-1]
[40, 20, 10, 0]
Example 2: reverse array python
>>> array=[0,10,20,40]
>>> for i in reversed(array):
... print(i)
>>> L = [0,10,20,40]
>>> L[::-1]
[40, 20, 10, 0]
>>> array=[0,10,20,40]
>>> for i in reversed(array):
... print(i)