我在mac os 10.7.3上将字符串打印到python shell。
该字符串包含换行符,\ n \ r和制表符\ t。
我不是100%确定在每个平台上使用了哪些新行字符,但是我已经尝试了每个组合(\ n,\ n \ r \ n,\ r \ n)并且在shell上打印换行符:< / p>
'hello\n\r\tworld'
我不知道我做错了什么,感谢任何帮助。
由于
答案 0 :(得分:2)
你看起来像新行和回车实际上是两个字符 - 反斜杠加正常字符。
使用your_string.decode('string_escape')
:
>>> s = 'hello\\n\\r\\tworld' # or s = r'hello\n\r\tworld'
>>> print s
hello\n\r\tworld
>>> print repr(s)
'hello\\n\\r\\tworld'
>>> print s.decode('string_escape')
hello
world