在Python中,你可以使用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
)替换为空格。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云