从ascii hex解码Python

时间:2013-04-19 06:14:13

标签: python ascii

我正在寻找一个函数在python中将“\ x61 \ x62 \ x63 \ x64 \ x65 \ x66”转换为“abcdef”,而不必打印它

并且是这种类型的编码ascii hex的正确术语?

2 个答案:

答案 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'