這篇文章主要介紹了Python中使用strip()方法刪除字符串中空格的教程,是Python入門學習中的基礎知識,需要的朋友可以參考下
strip()方法返回所有字符從開始及字符串的末尾(默認空格字符)被去除後的字符串的一個副本。
語法
以下是strip()方法的語法:
?
1 str.strip([chars]);參數
chars -- 字符-從開始或結束的字符串被刪除去除。
返回值
此方法返回所有字符從開始及字符串的末尾(默認空格字符)被去除後的字符串的一個副本。
例子
下面的例子顯示了strip()方法的使用。
?
1 2 3 4 #!/usr/bin/python str = "0000000this is string example....wow!!!0000000"; print str.strip( '0' );當我們運行上面的程序,它會產生以下結果:
?
1 this is string example....wow!!!