how to check if particular word from string in in a list in python code example
Example 1: check if anything in a list is in a string python
y = any(x in String for x in List)
Example 2: check if word contains a word in a list python
if any(word in 'some one long two phrase three' for word in list_):