python not in list code example

Example 1: pandas not in list

>>> df
  countries
0        US
1        UK
2   Germany
3     China
>>> countries
['UK', 'China']
>>> df.countries.isin(countries)
0    False
1     True
2    False
3     True
Name: countries, dtype: bool
>>> df[df.countries.isin(countries)]
  countries
1        UK
3     China
>>> df[~df.countries.isin(countries)]
  countries
0        US
2   Germany

Example 2: python not in

arr = ['a','b','c','d','e','f']

if 'g' not in arr:
    print('g is not in the list')

Example 3: python all elements not in list

[x for x in item if x not in z]

Example 4: python not in list

>>> 3 not in [2, 3, 4]
False
>>> 3 not in [4, 5, 6]
True

Example 5: 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')

Tags:

Misc Example