python报错“AttributeError: 'set' object has no attribute 'items'“

作为才开始学爬虫的萌新,遇到了一个这样的错,很懵逼

python报错“AttributeError: 'set' object has no attribute 'items'“

后面到网络到处查看大佬的解决方法,才发现headers的请求头部信息有错误,headers是一个字典,不是字符串,所以报错了

原代码

headers={
#假装自己是浏览器
'User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36'
}

修改后的代码

headers={
#假装自己是浏览器
'User-Agent':' Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36'
}

最后成功解决问题,成功登录

python报错“AttributeError: 'set' object has no attribute 'items'“

上一篇:module 'scipy.misc' has no attribute 'toimage',python


下一篇:P5030 长脖子鹿放置 最小割