mac上的python中的新行和制表符

时间:2012-05-02 19:26:17

标签: python macos newline

我在mac os 10.7.3上将字符串打印到python shell。

该字符串包含换行符,\ n \ r和制表符\ t。

我不是100%确定在每个平台上使用了哪些新行字符,但是我已经尝试了每个组合(\ n,\ n \ r \ n,\ r \ n)并且在shell上打印换行符:< / p>

 'hello\n\r\tworld'

我不知道我做错了什么,感谢任何帮助。

由于

1 个答案:

答案 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