码迷,mamicode.com
首页 > 编程语言 > 详细

Python strip()方法介绍

时间:2017-09-01 18:56:32      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:bsp   移除   span   介绍   返回   pytho   strip()   字符   ret   

描述

Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)。

语法

strip()方法语法:

str.strip([chars]);

参数

  • chars -- 移除字符串头尾指定的字符。

返回值

返回移除字符串头尾指定的字符生成的新字符串。

 

特别注意:移除的字符串的头尾指定字符,不如不是头尾字符不会移除

例1:

>>> a = ‘     123    ‘
>>> a.strip()
‘123‘

例2:

>>> a = ‘  123 456  ‘
>>> a.strip()
‘123 456‘

 

例3:

>>> a = ‘22113344 ‘
>>> a.strip()
‘22113344‘

 

例4:

>>> a = ‘1122113344 ‘
>>> a.strip()
‘22113344‘

 

Python strip()方法介绍

标签:bsp   移除   span   介绍   返回   pytho   strip()   字符   ret   

原文地址:http://www.cnblogs.com/jiaoyang77/p/7464573.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!