python实现去除空格及tab换行符的方法

1、先放个大招:去除字符串中所有的空格和tab换行符

str=" a b   c  de 
f "
print(str.replace(" ","").replace("\n",""))
===输出结果===
abcdef

2、strip()方法,去除字符串开头或者结尾的空格

str = " a b c "
str.strip()
'a b c'

3、lstrip()方法,去除字符串开头的空格

str = " a b c "
str.lstrip()
'a b c '

4、rstrip()方法,去除字符串结尾的空格

str = " a b c "
str.lstrip()
' a b c'

5、replace()方法,去除字符串全部的空格

str = " a b c "
str.lstrip()
'abc'

以上就是python实现去除空格及tab换行符的方法的详细内容,更多关于python去空格tab换行符的资料请关注脚本之家其它相关文章!

你可能感兴趣的:(python实现去除空格及tab换行符的方法)