在Python中,你可以使用str.replace()方法将换行符替换为空格
str.replace()
text = "Hello,\nWorld!\nThis is a test." new_text = text.replace("\n", " ") print(new_text)
输出:
Hello, World! This is a test.
在这个例子中,我们使用replace()方法将字符串text中的所有换行符(\n)替换为空格。
replace()
text
\n
领取专属 10元无门槛券
手把手带您无忧上云