我正在从 Python 读取具有以下行的文件:
#separator \x09
如何将 转换\x09
为制表符(稍后我将使用它作为分隔符)?
我正在从 Python 读取具有以下行的文件:
#separator \x09
如何将 转换\x09
为制表符(稍后我将使用它作为分隔符)?
>>> s = r'\x09'
>>> s.decode('unicode_escape')
u'\t'
或者,在 Python 3.x 中(如果你有 astr
而不是 a bytes
,因为你不能decode
a str
):
>>> s = r'\x09'
>>> s.encode('unicode_escape').decode('unicode_escape')
>>> '\t'
有关详细信息,请参阅文档中的Python 特定编码。codecs