标签:bsp 移除 span 介绍 返回 pytho strip() 字符 ret
Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)。
strip()方法语法:
str.strip([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‘
标签:bsp 移除 span 介绍 返回 pytho strip() 字符 ret
原文地址:http://www.cnblogs.com/jiaoyang77/p/7464573.html