I am working on Twitter data and trying to find strings that contain more than one word. The following line works for one word and with the OR condition.
tweets_text[tweets_text.str.contains("break")] #Find strings with the word break
tweets_text[tweets_text.str.contains("break|social|media")] #Find strings with either break or social, or media
I am trying to find the strings that have these three words ("break & social & media")