check if list contains 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: 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: python check if list contains
# To check if a certain element is contained in a list use 'in'
bikes = ['trek', 'redline', 'giant']
'trek' in bikes
# Output:
# True
Example 4: how to check if value is in list python
>>> letters = [a,b,c,d,e]
>>> 'a' in letters:
True
Example 5: if string is in array python
if item in my_list:
# whatever
Example 6: 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