If I have a frame like this
frame = pd.DataFrame({\'a\' : [\'the cat is blue\', \'the sky is green\', \'the dog is black\']})
and I want to
For list should work
print frame[frame['a'].isin(mylist)]
http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.isin.html