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

时间:2022-08-26 23:26:48

用关键字 in 和not in 来

如下:

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

666

以上这篇Python 查看list中是否含有某元素的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_28295425/article/details/52444226