python 这种情况就是把 unicode直接输出到文本中了,现在需要把它还原回去。 解决: In [23]: s1Out[23]: '\\u003C\\u0066\\u0072\\u006F\\u006D\\u003E'In [24]: s2Out[24]: '%u003c%u0062%u0072%u003e%u003c%u0064%u0069%u0076%u0020%u0063%u006c...'In [25]: print s1.decode('unicode...
这种情况就是把 unicode直接输出到文本中了,现在需要把它还原回去。 解决: In [23]: s1 Out[23]: '\\u003C\\u0066\\u0072\\u006F\\u006D\\u003E' In [24]: s2 Out[24]: '%u003c%u0062%u0072%u003e%u003c%u0064%u0069%u0076%u0020%u0063%u006c...' In [25]: print s1.decode('unicode...