摘要: ret = requests.get(url) #print(ret.text) ret = ret.content.decode("gbk") 报错 UnicodeDecodeError: 'gbk' codec can't decode byte 0xbf in position 350: il 阅读全文
posted @ 2023-03-14 20:08 腹肌猿 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 在爬虫爬取网页数据时有时会遇到中文 此时不要用requests的text方法,用content方法 #print(ret.text) print(ret.content) 此时中文转变成了16进制,我们用decode("gbk")方法将其转化为中文 ret.content.decode("gbk") 阅读全文
posted @ 2023-03-14 19:37 腹肌猿 阅读(332) 评论(0) 推荐(0) 编辑