Answers for "how to reverse an array in python without using function"

1

how to reverse array in python

>>> L = [0,10,20,40]
>>> L[::-1]
[40, 20, 10, 0]
Posted by: Guest on March-06-2020

Code answers related to "how to reverse an array in python without using function"

Python Answers by Framework

Browse Popular Code Answers by Language