1、in 操作符
a in a_list
如果a在a_list中,该语句返回True
如果a不在a_list中,该语句返回False
2、not in 操作符
和 in 操作符相反
3、count方法
a_list.count(a)
统计指定值在列表中出现的次数
4、index方法
a_list.index(a)
查看指定值在列表第一次出现的位置
a_list.index(a,0,3)
查看指定值在列表指定区间内第一次出现的位置
a in a_list
如果a在a_list中,该语句返回True
如果a不在a_list中,该语句返回False
和 in 操作符相反
a_list.count(a)
统计指定值在列表中出现的次数
a_list.index(a)
查看指定值在列表第一次出现的位置
a_list.index(a,0,3)
查看指定值在列表指定区间内第一次出现的位置
本文标题:pyhton list查找元素的四种方法
本文链接:https://www.haomeiwen.com/subject/ozttvftx.html
网友评论