问题
使用Python进行解码操作的时候经常会遇到AttributeError: 'str' object has no attribute 'decode'的问题,其实遇到这个问题的主要原因就是我们decode时给到的数据类型不对。
解决办法
转换编码再解码:
encode('utf-8').decode("utf-8")
encode('utf-8').decode("unicode-escape")
示例:
使用Python进行解码操作的时候经常会遇到AttributeError: 'str' object has no attribute 'decode'的问题,其实遇到这个问题的主要原因就是我们decode时给到的数据类型不对。
转换编码再解码:
encode('utf-8').decode("utf-8")
encode('utf-8').decode("unicode-escape")
示例: