Python では、in キーワードと not in キーワードを使用して、リストに要素が含まれているかどうかを判断できます
pythontab = ['p','y','t','h','o','n','t','a','b'] if 't' in pythontab: print 't in pythontab' if 'w' not in pythontab: print 'w is not in pythontab'
in と not in は非常に一般的に使用されるキーワードです。