Home » Python program to print the elements of an array present on odd position

Python program to print the elements of an array present on odd position

by Online Tutorials Library

8. Python program to print the elements of an array present on odd position

In this program, we need to print the elements of the array which are present in odd positions. This can be accomplished by looping through the array and printing the elements of an array by incrementing i by 2 till the end of the array is reached.

Python program to print the elements of an array present on odd position

In the above array, the elements present on odd positions are a, c and e.

ALGORITHM:

  • STEP 1: Declare and initialize an array.
  • STEP 2: Calculate the length of the declared array.
  • STEP 3: Loop through the array by initializing the value of variable “i” to 0 then incrementing its value by 2, i.e., i=i+2.
  • STEP 4: Print the elements present in odd positions.

PROGRAM:

Output:

Elements of given array present on odd position:  1  3  5  
Next TopicPython Programs

You may also like