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

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

程序员文章站 2022-03-30 22:43:10
...
在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 是非常常用的关键字。