python中删除字符串中空格的方法:
1、使用replace()函数,把所有的空格(" ")替换为("")
defremove(string): returnstring.replace("",""); string='HELLO!'; print("原字符串:"+string); print("\n新字符串:"+remove(string));
输出结果:
原字符串: H E L L O !
新字符串:HELLO!
2、使用lstrip()函数删除字符串左边空格
lstrip()方法语法:
str.lstrip([chars])
示例:
#!/usr/bin/python str="thisisstringexample....wow!!!"; printstr.lstrip(); str="88888888thisisstringexample....wow!!!8888888"; printstr.lstrip('8');
输出结果:
this is string example….wow!!!
this is string example….wow!!!8888888
3、使用rstrip()函数删除字符串末尾空格
rstrip()方法语法:
str.rstrip([chars])
示例:
#!/usr/bin/python str="thisisstringexample....wow!!!"; printstr.rstrip(); str="88888888thisisstringexample....wow!!!8888888"; printstr.rstrip('8');
输出结果如下:
原文来自:https://www.py.cnthis is string example….wow!!!
88888888this is string example….wow!!!
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容