python strip 函数用法及介绍

 

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

注意:该方法只能删除开头或是结尾的字符,不能删除中间部分的字符。

Python 3.6.5 (default, Apr  1 2018, 05:46:30)
[GCC 7.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> str = "01234577889540000"
>>> str.strip("0")
'123457788954'
>>>

eg2:
去除首位空格

>>> sgtr2 = "   01245632547888888    "
>>> sgtr2.strip(" ")
'01245632547888888'
>>>

eg3:

不分顺序,只要字符串首位出现字符想切除就都可以。

>>> str3 = "abc124565421bca"
>>> str3.strip("abc")
'124565421'

 

你可能感兴趣的:(数据类型操作,strip,python)