当前位置: 代码迷 >> 综合 >> scrapy爬虫框架xpath.extract()[0]错误记录:IndexError: list index out of range
  详细解决方案

scrapy爬虫框架xpath.extract()[0]错误记录:IndexError: list index out of range

热度:10   发布时间:2023-12-12 07:57:17.0

IndexError: list index out of range

刚开始做scrapy爬虫程序,遇到这个问题IndexError: list index out of range 
搜索了以下答案

这个错误出现大约有两种情况: 
第1种可能情况 
list[index]index超出范围

第2种可能情况 
list是一个空的 没有一个元素 
进行list[0]就会出现该错误

  相关解决方案