1. 程式人生 > >python中的strip()函式

python中的strip()函式

Python strip() 方法用於移除字串頭尾指定的字元(預設為空格)。

語法:str.strip([chars]);
引數:chars -- 移除字串頭尾指定的字元。

返回值:返回移除字串頭尾指定的字元生成的新字串。

例項:

>>> str="00000  run0bb  00000"        #移除字串首尾指定的所有字元,中間的不移除
>>> str.strip('0')
'  run0bb  '
>>> str="   ddddd    "
>>> str.strip(' ')
'ddddd'