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.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/array/python-array-exercise-11.php