爬虫清洗:python strip()函数 去空格\n\r\t函数的用法_爬虫中分行strip-CSDN博客

网站介绍:文章浏览阅读1.7w次,点赞2次,收藏14次。在Python中字符串处理函数里有三个去空格(包括'\n', '\r', '\t', ' ')的函数:strip 同时去掉左右两边的空格lstrip 去掉左边的空格rstrip 去掉右边的空格具体示例如下:>>>a=" gho stwwl ">>>a.lstrip() 'gho stwwl '>>>a.rstrip() ' g..._爬虫中分行strip