如何将多行字符串合并为 Python 中的一行并用 space 分隔它们?
How can I combine multiple lines of string into one line in Python with a space to separate them?
我有以下字符串:
text1
text2
text3
text4
text5
我希望他们是这样的:
text1 text2 text3 text4 text5
我可以使用 python 执行此操作吗?
使用:
s.replace("\n", " ")
我有以下字符串:
text1
text2
text3
text4
text5
我希望他们是这样的:
text1 text2 text3 text4 text5
我可以使用 python 执行此操作吗?
使用:
s.replace("\n", " ")