So if my pandas df has two columns, Countries and places:
Countries Places
0 US New York
1 UK Old York
2 France Paris
3 India New Delhi
I have a list like so: l = ['New','Old']
How would I select rows for which the places column contain text that contain string that is also present in my list. (The whole string may or may not be present in the list) (It should create a data frame that only contains, US, UK, India but NOT france). (It will