Beautiful Soup:解决“ResultSet”属性错误
尝试使用 Beautiful Soup 抓取表格结构时,可能会遇到错误:“‘ResultSet’对象没有属性‘find_all’”。要解决此问题,了解 find_all 方法返回结果的结构至关重要。
ResultSet 对象的本质
find_all 返回匹配元素的列表。在您的情况下,表包含一个元素的列表,即表本身。要检索表中的行,您需要在元素上调用 find_all,而不是在 ResultSet 对象上调用:
# Correct: Iterate over table body rows for row in table[0].find_all('tr'): ...
了解错误消息
错误消息“'ResultSet' object has no attribute 'find_all'”表示您正在尝试对 ResultSet 对象本身调用 find_all。该对象没有 find_all 属性,因为它不是标签,而是标签的集合。
示例解决方案
根据您提供的代码,更正后的结果版本将是:
... table = soup.find_all(class_='dataframe')[0] # Select the table element for row in table.find_all('tr'): col = row.find_all('td') ...
以上是Beautiful Soup \'ResultSet\' 错误:为什么 `find_all` 在 ResultSet 对象上失败?的详细内容。更多信息请关注PHP中文网其他相关文章!