如何修复错误:列表索引超出范围?



我无法解决这个问题。我真的需要帮助

下面是我的代码:https://dpaste.org/PqpYE L33下面是我遇到的错误:

File "test.py", line 30, in <module>
percent = soup.find('tbody').find_all('tr')[a].find('td').find_all(class_ ='styled__PercentContainer-sc-1qtnlbe-0 eeuaGk')
IndexError: list index out of range

a+=1移到loop的末端。Python索引从0开始。

可以遍历行和指数串联通过for a, i in enumerate(row):然后你不需要手动把索引(您可以删除a+=1和初始化a=0)。

相关内容

  • 没有找到相关文章

最新更新