print('接口响应体---》', res.text) # 输出结果中文乱码
解决方案:可以在请求成功时设置对应的编码,例如:
res = requests.request(method="GET", url=url, params=in_data, cookies=cookie)
res.encoding = 'unicode_escape'
print('接口响应体---》', res.text)
更多参考:https://blog.csdn.net/weixin_42927927/article/details/123660199
标签:---,中文,Python,text,乱码,res,requests From: https://www.cnblogs.com/dyjnicole/p/17227338.html