python去除空格tab换行符
LexSaints 人气:01、先放个大招:去除字符串中所有的空格和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'
加载全部内容