python如何删除文本中的换行符

python

Python中字符串String去除出换行符和空格的问题(

,)

在Python的编写过程中,获取到的字符串进场存在不明原因的换行和空格,如何整合成一个单句,成为问题。

方法:

一、去除空格

“ · ”代表的为空格

strip()

"···xyz···".strip()            # returns "xyz"  

"···xyz···".lstrip()           # returns "xyz···"  

"···xyz···".rstrip()           # returns "···xyz"  

"··x·y·z··".replace(' ', '')   # returns "xyz"

二、替换 replace(“space”,"")

用replace("

", “”),与replace("", “”),后边的内容替换掉前边的。

推荐学习《Python教程》!

以上是 python如何删除文本中的换行符 的全部内容, 来源链接: utcz.com/z/525655.html

回到顶部