'list' object has no attribute 'title'
时间: 2023-09-08 07:16:19 浏览: 251
'list' object has no attribute 'title' 这个报错是因为你尝试在一个列表对象上调用'title'属性,而列表对象并没有'title'属性。可以看出这个问题出现在你的代码中的obj变量上。在你的代码中,你使用了BeautifulSoup库来解析网页内容,但是你在调用BeautifulSoup的时候,传入的是列表对象而不是字符串对象。所以在创建BeautifulSoup对象时,你需要传入一个字符串对象而不是一个列表对象。你可以将urlopen函数获取的网页内容先转换成字符串,然后再传入BeautifulSoup函数进行解析。可以使用bytes.decode()函数将网页内容转换成字符串,然后将转换后的字符串作为第一个参数传入BeautifulSoup函数。这样就可以避免出现'list' object has no attribute 'title'的报错了。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [AttributeError: ‘list‘ object has no attribute ‘to_excel](https://blog.csdn.net/ml7yuwanhanhua/article/details/127295497)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [Python爬虫 object has no attribute ‘title’ 问题解决](https://blog.csdn.net/weixin_44038564/article/details/121075295)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文