python is item in list of strings 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: if list item in string python
if any(ext in url_string for ext in extensionsToCheck):
print(url_string)