Python 查看list中是否含有某元素的方法

用关键字 in 和not in 来

如下:

qwe =[1,2,3,4,5] 
if 2 in qwe: 
print ‘good!' 
else: 
print ‘not good'

666

相关推荐