df[~df['column_name'].isin(['value_1', 'value_2'])]
Here is what the above code is Doing:
1. df[‘column_name’] is the column you want to filter on
2. ~ is the NOT operator
3. .isin([‘value_1’, ‘value_2’]) is the list of values you want to filter out