• 技术文章 >常见问题 >Python常见问题

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

    yangyang2020-05-18 16:07:38原创6632

    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

    更多Python知识请关注Python自学网

    专题推荐:python
    上一篇:如何用Python写网页? 下一篇:python程序里rt是什么意思?

    相关文章推荐

    • 怎么查看python.exe文件在哪?• 如何用Python画一颗小树?• 如何用Python编写一副扑克牌?• 如何用python画六边形?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网