check if list of words in string 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_):
Example 3: if list item in string python
if any(ext in url_string for ext in extensionsToCheck):
print(url_string)