I imported a csv into a dataframe and I am looking to drop rows based on a list of unique ID's.
Name     Song_ID     Status
song 1   12345       Pending
song 1   12345       Validating
song 2   18284       Validating
song 3   17385       Pending
song 3   17385       Pending
song 4   13467       Pending
song 5   19999       Pending
song 5   19999       Pending
For this example, I would like to drop the rows with Song_ID's: 12345, 17385, 19999
Any tips/suggestions would be much appreciated!
