标签: python
我想在\ xNN中打印出十六进制字符串。是否有任何快速方法让\ xNN转换回十六进制字符串? 我更喜欢原生的快速方法而不是手动编写长函数。
例如
$ python >>> '\x74op' >>> 'top' >>> s=r'\x74op' >>> '\\x74op' >>> convert(s) # how to write this function >>> 'top'
答案 0 :(得分:5)
我想你想要s.decode('string_escape')。
s.decode('string_escape')