时间:2021-07-01 10:21:17 帮助过:48人阅读
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网其它相关文章!