python check if string is not 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: if string is in array python

if item in my_list:
    # whatever

Example 3: python checking not in list

a = [1, 2, 3, 4, 5, 6]
b = 7
c = 4

# use "not in" to check if something is not an element of a list
# use "in" to check if something is an element of a list

if b not in a:
  print('True')
else:
  print('False')

if c in a:
  print('True')
else:
    print('False')

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):
    # whatever