how to check if there is an item in a list python code example
Example 1: 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 2: check if a number is in a list python
5 in [3, 4, 5, 6, 7]
# True
9 in [3, 4, 5, 6, 7]
# False