I have a pandas dataframe that looks like this:
Beer Rating
0 Heineken Good
1 Budweiser Bad
2 Coors Light Bad
and a list that looks like this:
bad_beers = ["Light", "0.0%"]
How to delete every row in a pandas dataframe that contains a given string from a list?
The desired output should look like this:
Beer Rating
0 Heineken Good
1 Budweiser Bad