标签: python networking unicode decoding
我从服务器收到的普通字符串中有一些UCF-2数据。如何从中获取unicode()字符串?
EG: >>> something('\0a\0b\0c') = u'abc'
>>> something('\0a\0b\0c')
u'abc'
答案 0 :(得分:4)
>>> '\0a\0b\0c'.decode('UTF-16BE') u'abc'