Home » Python program to print the elements of an array in reverse order

Python program to print the elements of an array in reverse order

by Online Tutorials Library

6. Python program to print the elements of an array in reverse order

In this program, we need to print the elements of the array in reverse order that is; the last element should be displayed first, followed by second last element and so on.

Python program to print the elements of an array in reverse order

Above array in reversed order:

Python program to print the elements of an array in reverse order

ALGORITHM:

  • STEP 1: Declare and initialize an array.
  • STEP 2: Loop through the array in reverse order that is, the loop will start from (length of the array – 1) and end at 0 by decreasing the value of i by 1.
  • STEP 3: Print the element arr[i] in each iteration.

PROGRAM:

Output:

Original array:   12   3   4   5  Array in reverse order:  5    4   3   2   1  
Next TopicPython Programs

You may also like