How to remove an item from a list in python

How to remove an item from a python list :

In this tutorial, we will learn how to remove an item from a list in python.  We can divide this problem into three categories: removing an element_ using its value_, using an index and remove all elements.

This tutorial will show you how to remove an element using its value, how to remove using an index and how to remove all elements from a list in python.

Actually, we already have inbuilt methods for all of these operations. Different methods are available for removing list items.

Removing item using list.remove(x) :

This method is used for removing an item from a list using its value._ remove() _method is defined as below :

python remove item from list

It will remove the ‘c’ from the list. If the value is not found, it will raise ValueError. python remove item from list

As you can see that we don’t need to import any other module to use this method. This is an inbuilt method of a list in python. It takes one value as the parameter, i.e. the value you want to remove. In the above picture, it will remove ‘c’ from the list. If the value is not found, it will raise ValueError.

Removing item using list.pop(i) :

Another method of removing an element from a list is pop. This method takes the index of the element to remove as the parameter. It returns that indexed element from the list. This value is optional. If we don’t pass it, it will return the last element of the list.

This method is useful if we want to use the removed value later. You can call this method and store the returned value in a separate variable to print it out to the user or to use it in future.

python remove item from list

The first print will print out c and the second one will print out_ f_ as the output. python remove list item

So, both remove and pop methods are used to remove a single element from a list. The following are the two main differences between these two methods :

  1. remove takes the element to remove as its argument and pop take the index of the element as an argument.

  2. remove will simply remove the item. It doesn’t return any value. But pop removes the element and returns it.

Removing all elements from a list :

For removing all elements from a list in python, we can iterate the list and remove each item one by one using the remove or pop method. But Python provides us with one simple method to remove all elements of a list, clear().

python remove item from list

It will print one empty list [] as the output. Note that this method doesn’t delete the list variable, it only removes all items from the list. python remove list item

Removing elements using del :

del is a powerful statement for removing list values in python. Using it, we can remove an element using a specific index. pop method also takes one index and remove the element at this index. The only difference is that pop returns a value and del doesn’t return a value.

Using del, we can either remove one specific value, remove slice from a list or clear the entire list.

python remove item from list

Conclusion :

remove, del, clear and pop are useful methods for removing single or multiple items from a python list. Try to run the above examples and drop one comment below if you have any queries.

You might also like :