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

在python中可以通过in和not in关键字来判读一个list中是否包含一个元素

1
2
3
4
5
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 是非常常用的关键字。

感谢@飞飞指正错误

© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容