Difference between del, remove, and pop on lists
The effects of the three different methods to remove an element from a list: remove removes the first matching value, not a specific index: del removes the item at a specific index: and pop removes the item at a specific index and returns it. Their error modes are different too: