我无法解决这个问题。我真的需要帮助
下面是我的代码: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
)。