首页 > 其他 > 详细

AttributeError: 'str' object has no attribute 'decode'

时间:2019-09-24 23:05:16      阅读:109      评论:0      收藏:0      [点我收藏+]

python3下列代码会报上边的错

print("Response:", resp.text.decode(‘unicode_escape‘))
解决办法:
print("Response:", resp.text.encode(‘utf-8‘).decode(‘unicode_escape‘))
中间加上.encode(‘utf-8‘)即可。

问题原因:
python3里面,字符串要先encode手动指定其为某一编码的字节码之后,才能decode解码。
原文链接:https://blog.csdn.net/IT_TIfarmer/article/details/90747496

AttributeError: 'str' object has no attribute 'decode'

原文:https://www.cnblogs.com/zhf123/p/11581719.html

(1)
(1)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!