파이썬에서는 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은 매우 일반적으로 사용되는 키워드입니다.