python怎么查找列表是否存在该元素

图片[1]-python怎么查找列表是否存在该元素-uusu优素-乐高,模型,3d打印,编程

python中可以使用index()方法查找列表中是否存在某元素。index() 函数用于从列表中找出某个值第一个匹配项的索引位置。该方法返回查找对象的索引位置,如果没有找到对象则抛出异常。

示例:

存在指定元素的情况:

test_list=[1,6,3,5,3,4]
test_list.index(1)

输出结果:

0

不存在指定元素的情况:

test_list=[1,6,3,5,3,4]
test_list.index(0)

输出结果如下:

——————————————————-

ValueError Traceback (most recent call last)

<ipython-input-37-b545efee4fc5> in <module>

1 test_list = [ 1, 6, 3, 5, 3, 4 ]

—-> 2 test_list.index(0)

ValueError: 0 is not in list

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容