Python - 替换\ n并替换\ t - 有趣的行为

时间:2016-10-06 18:30:01

标签: python replace

以下是我的例子:

test = 'some string\n'
test.replace('\n',' ')
test.replace('\t',' ')

我无法理解为什么输出看起来像

'some string\n'

'\n'应该已经消失了。

0 个答案:

没有答案