Python去除字符串两端空格的方法


Posted in Python onMay 21, 2015

目的

获得一个首尾不含多余空格的字符串

方法

可以使用字符串的以下方法处理:

string.lstrip(s[, chars])
Return a copy of the string with leading characters removed. If chars is omitted or None, whitespace characters are removed. If given and not None, chars must be a string; the characters in the string will be stripped from the beginning of the string this method is called on.

string.rstrip(s[, chars])
Return a copy of the string with trailing characters removed. If chars is omitted or None, whitespace characters are removed. If given and not None, chars must be a string; the characters in the string will be stripped from the end of the string this method is called on.

string.strip(s[, chars])
Return a copy of the string with leading and trailing characters removed. If chars is omitted or None, whitespace characters are removed. If given and not None, chars must be a string; the characters in the string will be stripped from the both ends of the string this method is called on.

 

具体的效果如下:

In [10]: x='     Hi,Jack!        '
In [11]: print '|',x.lstrip(),'|',x.rstrip(),'|',x.strip(),'|'

| Hi,Jack!         |      Hi,Jack! | Hi,Jack! |

其中提供的参数chars用来删除特定的符号,注意空格并没有被移除,例如:

In [12]: x='yxyxyxxxyy Hello xyxyxyy'
In [13]: print x.strip('xy')

 Hello
Python 相关文章推荐
python写的一个squid访问日志分析的小程序
Sep 17 Python
如何高效使用Python字典的方法详解
Aug 31 Python
django rest framework之请求与响应(详解)
Nov 06 Python
Python正则表达式和re库知识点总结
Feb 11 Python
python调试神器PySnooper的使用
Jul 03 Python
解决python tkinter界面卡死的问题
Jul 17 Python
python Elasticsearch索引建立和数据的上传详解
Aug 04 Python
Django admin禁用编辑链接和添加删除操作详解
Nov 15 Python
Python实现验证码识别
Jun 15 Python
opencv 图像轮廓的实现示例
Jul 08 Python
用Python提取PDF表格的方法
Apr 11 Python
python如何利用cv2模块读取显示保存图片
Jun 04 Python
在Python中处理列表之reverse()方法的使用教程
May 21 #Python
Python中字符串对齐方法介绍
May 21 #Python
在Python的列表中利用remove()方法删除元素的教程
May 21 #Python
Python检测一个对象是否为字符串类的方法
May 21 #Python
在Python中操作列表之List.pop()方法的使用
May 21 #Python
Python字符和字符值(ASCII或Unicode码值)转换方法
May 21 #Python
Python中每次处理一个字符的5种方法
May 21 #Python
You might like
PHP中GET变量的使用
2006/10/09 PHP
使用数据库保存session的方法
2006/10/09 PHP
php入门之连接mysql数据库的一个类
2012/04/21 PHP
php图片处理函数获取类型及扩展名实例
2014/11/19 PHP
php实现图片局部打马赛克的方法
2015/02/11 PHP
ajax+php实现无刷新验证手机号的实例
2017/12/22 PHP
php命令行写shell实例详解
2018/07/19 PHP
PHP判断是否微信访问的方法示例
2019/03/27 PHP
Convert Seconds To Hours
2007/06/16 Javascript
javascript入门·动态的时钟,显示完整的一些方法,新年倒计时
2007/10/01 Javascript
jquery判断checkbox(复选框)是否被选中的代码
2010/10/20 Javascript
jQuery1.6 正式版发布并提供下载
2011/05/05 Javascript
返回上一页并自动刷新的JavaScript代码
2014/02/19 Javascript
邮箱下拉自动填充选择示例代码附图
2014/04/03 Javascript
JS按回车键实现登录的方法
2014/08/25 Javascript
Javascript优化技巧之短路表达式详细介绍
2015/03/27 Javascript
javascript实现表单提交后,提交按钮不可用的方法
2015/04/18 Javascript
jQuery点击其他地方时菜单消失的实现方法
2016/04/22 Javascript
修改js confirm alert 提示框文字的简单实例
2016/06/10 Javascript
javascript滚轮控制模拟滚动条
2016/10/19 Javascript
微信小程序  TLS 版本必须大于等于1.2问题解决
2017/02/22 Javascript
vue2.0中goods选购栏滚动算法的实现代码
2017/05/17 Javascript
nodejs使用async模块同步执行的方法
2019/03/02 NodeJs
JS前端面试必备——基本排序算法原理与实现方法详解【插入/选择/归并/冒泡/快速排序】
2020/02/24 Javascript
ES6函数和数组用法实例分析
2020/05/23 Javascript
Python中解析JSON并同时进行自定义编码处理实例
2015/02/08 Python
Python装饰器的函数式编程详解
2015/02/27 Python
详解Python中的相对导入和绝对导入
2017/01/06 Python
Python实现计算两个时间之间相差天数的方法
2017/05/10 Python
centos6.8安装python3.7无法import _ssl的解决方法
2018/09/17 Python
keras 特征图可视化实例(中间层)
2020/01/24 Python
谈谈python垃圾回收机制
2020/09/27 Python
实习老师离校感言
2014/02/03 职场文书
家装电话营销开场白
2015/05/29 职场文书
2016感恩母亲节校园广播稿
2015/12/17 职场文书
python中super()函数的理解与基本使用
2021/08/30 Python