python使用beautifulsoup报错You're probably treating a list of items like a single item. Did you cal

  在写beautifulsoup模块,学到用find_all()方法来通过属性筛选标签,但是调取返回值的时候报错

python使用beautifulsoup报错You're probably treating a list of items like a single item. Did you cal

 

翻译过来就是:

ResultSet对象没有属性‘%s‘。您可能将list作为单个项来处理。当您要调用find()时,是否调用了find_all()?对象没有属性‘find_all’。你可能会把list当成iitems。当您打算调用find()时,是否调用了find_all()?

 

  反反复复检查,发恍然大悟,find_all的返回值是list,绝对不能直接当做字符串调用。

  可以用for循环全部调出,也可以用find_all()[0]来直接取出。

上一篇:Python 简单爬虫


下一篇:网络爬虫第二章