I have two lists of strings, list_1 and list_2.
list_1 = ["Hello", "Hi", "Hey"]
list_2 = ["Hello, my name in John.", "Hi, my name is John.", "Hey, my name
is John.", "My name is John."]
I want to check if any of the strings in list_1 are contained in any of the strings in list_2, in such a way that returns the strings in list_2 for which this is true. Is there a good way to do this?