1. 程式人生 > >Python strip()方法:移除頭尾字元

Python strip()方法:移除頭尾字元

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

語法
strip()方法語法:

str.strip([chars]);

引數
chars – 移除字串頭尾指定的字元。
返回值
返回移除字串頭尾指定的字元生成的新字串。只移除字串頭尾指定的字元,中間部分不會移除

例項

str = "0000000this is string example....wow!!!0000000";
print str.strip( '0' );

輸出結果:
this is string example....wow!!!