check for a word in a list containing strings python code example
Example 1: 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 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