在python中可以透過in和not in關鍵字來判讀一個list中是否包含一個元素
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 是非常常用的關鍵字。