python 中如何判断list中是否包含某个元素

  • Post author:
  • Post category:python


theList = ['a','b','c']
if 'a' in theList:
    print 'a in the list'

if 'd' not in theList:
    print 'd is not in the list'