码迷,mamicode.com
首页 > 编程语言 > 详细

Python 中去除字符串空格的方法

时间:2019-07-02 16:19:51      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:步骤   ring   split()   合并   空格替换   str   ace   字符串   替换   

方法一:strip方法 , 去除字符串最左和最右的空格

string = ‘  a  b  c   ‘

print( string.strip() )

#OUTPUT

>>‘a b c‘

 

方法二:lstrip方法, 去除字符串最左的空格

print( string.lstrip() )

#OUTPUT

>>‘a b c  ‘

 

方法三:rstrip方法, 去除最右的空格

>>‘  a b c‘

 

方法四:replace方法, 把空格替换为其他字符

print( string.replace( ‘ ‘ , ‘‘ ) )

#OUTPUT

>>‘abc‘

方法五:split + join方法,先按空格把字符串化成一个列表,再合并

tmp_str = string.split() # tmp_str = [‘a‘ ,‘b‘ ,‘c‘]

str = ‘‘.join(tmp_str) #用一个空字符串join列表

print(str)

#OUTPUT

>>‘abc‘

或者直接合并步骤:

print( ‘‘.join(string.split()) )

Python 中去除字符串空格的方法

标签:步骤   ring   split()   合并   空格替换   str   ace   字符串   替换   

原文地址:https://www.cnblogs.com/zhanghengyu/p/11121160.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!