python check if string is in list 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: python check if list contains
bikes = ['trek', 'redline', 'giant']
'trek' in bikes
Example 3: python check if list contains value
if value in list:
if value not in list:
Example 4: 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):
Example 5: check if a number is in a list python
5 in [3, 4, 5, 6, 7]
9 in [3, 4, 5, 6, 7]
Example 6: python find if element in list
element_you_want_to_find in list_in_you_want_to_search
Note: Don't forget to substitute both of that variables with the variables you want
Conclusion: Use the in operator