While lists aren’t the most efficient data structure if you’ll be doing lots of deleting from the middle, there are definitely good ways to accomplish the task. The built-in [remove()](https://python-reference.readthedocs.io/en/latest/docs/list/remove.html) method should be your first option.

Related Articles