1a = [1, 2, 3, 4, 5, 6]
2b = 7
3c = 4
4
5# use "not in" to check if something is not an element of a list
6# use "in" to check if something is an element of a list
7
8if b not in a:
9 print('True')
10else:
11 print('False')
12
13if c in a:
14 print('True')
15else:
16 print('False')
17