当前位置:Gxlcms > Python > 如何使用python判断list中是否包含某个元素

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

时间:2021-07-01 10:21:17 帮助过:48人阅读

在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 是非常常用的关键字。

以上就是如何使用python判断list中是否包含某个元素的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行