>>> a = ["aa","bb","cc","dd","ee"]
>>> a
['aa', 'bb', 'cc', 'dd', 'ee']
>>> "aa" in a
True
>>> "dd" in a
True
>>> "aa" not in a
False
>>> "dd" not in a
False
>>> "xx" in a
False
>>> "yy" in a
False
>>> "xx" not in a
True
>>> "yy" not in a
True
>>> a = ["aa","bb","cc","dd","ee"]
>>> a
['aa', 'bb', 'cc', 'dd', 'ee']
>>> "aa" in a
True
>>> "dd" in a
True
>>> "aa" not in a
False
>>> "dd" not in a
False
>>> "xx" in a
False
>>> "yy" in a
False
>>> "xx" not in a
True
>>> "yy" not in a
True