python if list string contains 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)
Example 4: python check if list contains value
if value in list:
if value not in list:
Example 5: check if list contains string python
some_list = ['abc-123', 'def-456', 'ghi-789', 'abc-456']
if any("abc" in s for s in some_list):