def find_words(string, words_to_find): return [x for x in string.replace(',', '').lower().split() if x in words_to_find]