check list for 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: if list item in string python

if any(ext in url_string for ext in extensionsToCheck):
    print(url_string)

Example 3: 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):
    # whatever

Example 4: python find string in list

list1 = ["a", "b", "c"]

isBInList = "b" in list1 # True