check if string is present in list 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: how to check if value is in list python
>>> letters = [a,b,c,d,e]
>>> 'a' in letters:
True
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