I want to build a script in Python that takes a base string and runs it through a list of other strings. The script should return a list of words or phrases which are in the strings but are not in the base string.
Example:
string = 'why kid is upset'
list_of_strings = ['why my kid is upset', 'why beautiful kid is upset',
'why my 15 years old kid is upset', 'why my kid is always upset']
should return
['my', 'beautiful', 'my 15 years old', 'always']
Any libraries that you would suggest me to study to solve the problem?