我现在有一个 str 类型的字符串:
'\u54c8\u55bd'
现在想把它转换成:u'\u54c8\u55bd'
在不使用 eval/exec 的情况下,求教各位大神,我该怎么弄?
我试了一下,unicode('\u54c8\u55bd').replace('\\\\','\\')
是不行的
1
lanqing 2018-12-07 11:48:15 +08:00 1
'\u54c8\u55bd'.decode('unicode_escape')
|