Sometimes, we want to delete a list element by value with Python.
In this article, we’ll look at how to delete a list element by value with Python.
How to delete a list element by value with Python?
To delete a list element by value with Python, we can use the remove
method.
For instance, we write:
a = ['a', 'b', 'c', 'd']
a.remove('b')
print(a)
We call a.remove
to remove 'b'
from a
.
Therefore, a
is now ['a', 'c', 'd']
.
Conclusion
To delete a list element by value with Python, we can use the remove
method.