欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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'

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

相关标签: python