python用BeautifulSoup解析源码时,去除空格及换行符

mac2022-06-30  25

一、去除空格

  strip()

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

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

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

转载于:https://www.cnblogs.com/valorchang/p/11468380.html

相关资源:垃圾分类数据集及代码
最新回复(0)