当前位置 : 主页 > 编程语言 > python >

python去除空格和换行符的方法

来源:互联网 收集:自由互联 发布时间:2022-09-02
一、去除空格 strip() " xyz ".strip() # returns "xyz" " xyz ".lstrip() # returns "xyz " " xyz ".rstrip() # returns " xyz" " x y z ".replace(' ', '') # returns "xyz" 二、替换 replace("space","") 用replace("\n", ""),后边的串替换

一、去除空格

strip()

" xyz ".strip() # returns "xyz"
" xyz ".lstrip() # returns "xyz "
" xyz ".rstrip() # returns " xyz"
" x y z ".replace(' ', '') # returns "xyz"

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

  用replace("\n", ""),后边的串替换掉前边的



上一篇:python爬虫--爬取cctv连续剧
下一篇:没有了
网友评论