标签: python replace
以下是我的例子:
test = 'some string\n' test.replace('\n',' ') test.replace('\t',' ')
我无法理解为什么输出看起来像
'some string\n'
'\n'应该已经消失了。
'\n'