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:桔子codelst = [1,3,9,5,21]a = lst.index(3)print('3第1次出现的位置',a)a = lst.index(20)print('2
·
原文链接: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中')
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献5条内容
所有评论(0)