标签: python string python-2.7 go
我得到这样的字符串
"\\xe4\\xbd\\xa0"
现在我想将这个字符串打印成中文。像这样
你
在python2.7中,我可以做到
print "\\xe4\\xbd\\xa0".decode("string-escape") # 你
但是我不知道该怎么做。
我该怎么办?