how to check if string is present in list in 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