我正在寻找一个函数在python中将“\ x61 \ x62 \ x63 \ x64 \ x65 \ x66”转换为“abcdef”,而不必打印它
并且是这种类型的编码ascii hex的正确术语?
答案 0 :(得分:1)
>>> "\x61\x62\x63\x64\x65\x66".decode('ascii')
u'abcdef'
答案 1 :(得分:0)
您可以使用unicode
方法将“\ x61 \ x62 \ x63 \ x64 \ x65 \ x66”转换为unicode字符串:
unicode("\x61\x62\x63\x64\x65\x66")
输出:u'abcdef'