创新互联Python教程:python中如何删除字符串中的空格

python中删除字符串中空格的方法:

专注于为中小企业提供成都做网站、成都网站制作服务,电脑端+手机端+微信端的三站合一,更高效的管理,为中小企业定边免费做网站提供优质的服务。我们立足成都,凝聚了一批互联网行业人才,有力地推动了1000多家企业的稳健成长,帮助中小企业通过网站建设实现规模扩充和转变。

1、使用replace()函数,把所有的空格(" ")替换为("")

def remove(string): 
    return string.replace(" ", "");
     
string = ' H  E  L  L  O  ! ';
print("原字符串:"+string) ;
print("\n新字符串:"+remove(string)) ;

输出结果:

原字符串: H  E  L  L  O  !

新字符串:HELLO!

2、使用lstrip()函数删除字符串左边空格

lstrip()方法语法:

str.lstrip([chars])

示例:

#!/usr/bin/python

str = "     this is string example....wow!!!     ";
print str.lstrip();
str = "88888888this is string example....wow!!!8888888";
print str.lstrip('8');

输出结果:

this is string example....wow!!!

this is string example....wow!!!8888888

3、使用rstrip()函数删除字符串末尾空格

rstrip()方法语法:

str.rstrip([chars])

示例:

#!/usr/bin/python

str = "     this is string example....wow!!!     ";
print str.rstrip();
str = "88888888this is string example....wow!!!8888888";
print str.rstrip('8');

输出结果如下:

     this is string example....wow!!!

88888888this is string example....wow!!!

网页标题:创新互联Python教程:python中如何删除字符串中的空格
URL链接:http://www.36103.cn/qtweb/news12/20912.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联