w3resource

Python: Remove a specified item using the index from an array

Python: Array Exercise-11 with Solution

Write a Python program to remove a specified item using the index of an array.

Pictorial Presentation:

Python Exercises: Remove a specified item using the index from an array

Sample Solution:

Python Code :

from array import *
array_num = array('i', [1, 3, 5, 7, 9])
print("Original array: "+str(array_num))
print("Remove the third item form the array:")
array_num.pop(2)
print("New array: "+str(array_num))

Sample Output:

Original array: array('i', [1, 3, 5, 7, 9])                            
Remove the third item form the array:                                  
New array: array('i', [1, 3, 7, 9])

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python program to insert a new item before the second element in an existing array.
Next: Write a Python program to remove the first occurrence of a specified element from an array.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.