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

21

how to reverse array in python

a = [1,2,3,4]
a = a[::-1]
print(a)
>>> [4,3,2,1]
Posted by: Guest on March-06-2020
0

python reverse array

array = [1, 2, 3, 4, 5]

reverse_array = array[::-1]
Posted by: Guest on May-13-2022

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

Python Answers by Framework

Browse Popular Code Answers by Language