是否可以取一个字符串,并将 所有 字符转换为它们的 Python 转义序列?

最佳答案

支持 strunicode 的完全转义(现在产生最短的转义序列):

def escape(s):
    ch = (ord(c) for c in s)
    return ''.join(('\\x%02x' % c) if c <= 255 else ('\\u%04x' % c) for c in ch)

for text in (u'\u2018\u2019hello there\u201c\u201d', 'hello there'):
    esc = escape(text)
    print esc

    # code below is to verify by round-tripping
    import ast
    assert text == ast.literal_eval('u"' + esc + '"')

输出:
\u2018\u2019\x68\x65\x6c\x6c\x6f\x20\x74\x68\x65\x72\x65\u201c\u201d
\x68\x65\x6c\x6c\x6f\x20\x74\x68\x65\x72\x65

关于python - 将字符转换为它们的 python 转义序列,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5864279/

10-12 22:09