Python错误集锦:使用list.index()提示ValueError: 20 is not in list

原文链接:http://www.juzicode.com/archives/2701

错误提示:

使用list的index方法查找元素时提示:ValueError: 20 is not in list

#juzicode.com/vx:桔子code
lst = [1,3,9,5,21]
a = lst.index(3)
print('3第1次出现的位置',a)
a = lst.index(20)
print('20第1次出现的位置',20)

3第1次出现的位置 1
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-1-80686fbbdb7c> in <module>
      3 a = lst.index(3)
      4 print('3第1次出现的位置',a)
----> 5 a = lst.index(20)
      6 print('20第1次出现的位置',20)

ValueError: 20 is not in list

错误原因:

1、使用list的index()函数时,如果元素不在list中,则会抛异常。

解决方法:

1、使用try语句捕获异常:

#juzicode.com/vx:桔子code
lst = [1,3,9,5,21]
try:
    a = lst.index(20)
    print('20第1次出现的位置',a)
except ValueError:
    print('20不在list中')

2、使用in判断要找的元素是否在list中,如果在list中再使用index方法找位置:

#juzicode.com/vx:桔子code
lst = [1,3,9,5,21]
if 20 in lst:
    a = lst.index(20)
    print('20第1次出现的位置',a)
else:
    print('20不在list中')

扩展内容:

Python基础教程2c–数据类型-list(列表)


关注微信公众号:“桔子code”,欢迎后台留言撩我,我会尽我所能为你解惑Python,C等编程知识

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注