Python中去除字符串空格的⽅法⽅法⼀: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( place( ' ' , '' ) )
#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()) )

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。