Python 3.4
我有一个unicode转义字符串:
> str = 'blah\\x2Ddude'
我想将此字符串转换为unicode非转义版本’blah-dude’
我该怎么做呢?
最佳答案 将其编码为字节(使用任何编解码器,utf-8可能有效)然后使用unicode-escape解码它:
s = 'blah\\x2Ddude'
s.encode().decode('unicode-escape')
Out[133]: 'blah-dude'
Python 3.4
我有一个unicode转义字符串:
> str = 'blah\\x2Ddude'
我想将此字符串转换为unicode非转义版本’blah-dude’
我该怎么做呢?
最佳答案 将其编码为字节(使用任何编解码器,utf-8可能有效)然后使用unicode-escape解码它:
s = 'blah\\x2Ddude'
s.encode().decode('unicode-escape')
Out[133]: 'blah-dude'