I have a list "stopwords" that contains ["apple", "banana", "pear", "'", "\""].
I have another variable that contains a sentence: "sentence".
I want a simple way to be able to check to see if the string "sentence" contains any words in the list "stopwords" and if it does, then throw an error without using a for loop.