Python 中去除字符串空格的方法
2020-12-13 04:46
标签:步骤 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