python以utf8打印字符串_在Python中将UTF8字符串转换为字符串

如果我有一个unicode字符串,例如:s = u'c\r\x8f\x02\x00\x00\x02\u201d'

如何将其转换为非unicode格式的常规字符串;即,我要提取:

^{pr2}$

我不希望它是unicode格式。我之所以需要这样做是因为我需要将s中的unicode转换为整数值,但是如果我只使用s来尝试:int((s[-4]+s[-3]+s[-2]+s[-1]).encode('hex'), 16)

Traceback (most recent call last):

File "", line 1, in

int((s[-4]+s[-3]+s[-2]+s[-1]).encode('hex'), 16)

File "C:\Python27\lib\encodings\hex_codec.py", line 24, in hex_encode

output = binascii.b2a_hex(input)

UnicodeEncodeError: 'ascii' codec can't encode character u'\u201d' in position 3: ordinal not in range(128)

但是如果我用f来做:int(f.encode('hex'), 16)

664608376369508L

这是我想从s中提取的正确的整数值,有没有一种方法可以做到这一点?在

你可能感兴趣的:(python以utf8打印字符串_在Python中将UTF8字符串转换为字符串)