python 中如何判断list中是否包含某个元素
程序员文章站
2024-01-24 16:14:58
...
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'