check value exists in string array python code example
Example 1: if list item is found in string get that item python
if any(x in string_to_search for x in listThat_contains_x):
print(x)
Example 2: 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