python字符串去除空格,python去除字符串(string)空格的五种方法

成年人的爱情不仅仅是简单的我爱你和漂亮的新衣服。

python去掉字符串中的空格的方法总结

1、strip方法去掉字符串两边(开头和结尾)的空格

space_str = ' Remove the space around the string '

print(space_str.strip())

2、lstrip方法去掉字符串左边的空格

left_space_str = ' Remove the space to the left of the string '

print(left_space_str.lstrip())

3、rstrip方法去掉字符串右边的空格

right_space_str = ' Remove the space to the right of the string '

print(right_space_str.rstrip())

4、replace方法替换字符串的空格为空

all_space_str = ' The space of the replacement string is empty '

print(all_space_str.replace(' ', '')

注意:这里说一下replace方法的具体用法

str.replace(old_str, new_str, [max])

old_str:代表原来的字符串,new_str:代表替换之后的字符串,max:代表替换的次数

5、正则匹配替换空格

import re

all_str = " Regular matching without spaces "

print(re.sub(r"\s+", "", all_str))

正则方法的使用这里不多说了,自己查一下详细文档即可。

如果感觉本文对您有帮助可以点个赞哦

本文为学习笔记,转载请标明出处

本文仅供交流学习,请勿用于非法途径

仅是个人意见,如有想法,欢迎留言

你可能感兴趣的:(python字符串去除空格)