Python strip()方法- Python教學 - 極客書
文章推薦指數: 80 %
strip()方法返回所有字符從開始及字符串的末尾(默認空格字符)被去除後的字符串的一個副本。
語法以下是strip()方法的語法: str . strip ([ chars ]) ...
Java
Python
Ruby
MySQL
位置:首頁>腳本語言>Python教學>Pythonstrip()方法
Python教學
Python快速入門Python概述Python環境安裝Python基本語法Python變量類型Python基本運算符Python決策Python循環Python數字類型Python字符串Python列表Python元組Python字典Python日期時間Date/TimePython函數Python模塊Python文件I/OPython異常處理
高級教學
Python3開發網絡爬蟲(一)Python3開發網絡爬蟲(二)Python3網絡爬蟲(三):偽裝瀏覽器Python3網絡爬蟲(四):登錄Python麵向對象Python正則表達式PythonCGI編程
Pythonstrip()方法
上一篇
下一篇
strip()方法返回所有字符從開始及字符串的末尾(默認空格字符)被去除後的字符串的一個副本。
語法
以下是strip()方法的語法:
str.strip([chars]);
參數
chars --字符-從開始或結束的字符串被刪除去除。
返回值
此方法返回所有字符從開始及字符串的末尾(默認空格字符)被去除後的字符串的一個副本。
例子
下麵的例子顯示了strip()方法的使用。
#!/usr/bin/python
str="0000000thisisstringexample....wow!!!0000000";
printstr.strip('0');
當我們運行上麵的程序,它會產生以下結果:
thisisstringexample....wow!!!
上一篇
下一篇
延伸文章資訊
- 1https://docs.python.org/3.4/library/stdtypes.html?...
- 2python中的strip()函式的用法 - 程式人生
python中的strip()函式的用法 ... 它的函式原型:string.strip(s[, chars]),它返回的是字串的副本,並刪除前導和字尾字元。 (意思就是你想去掉字串裡面的 ...
- 3Python string | strip() - GeeksforGeeks
strip() is an inbuilt function in Python programming language that returns a copy of the string w...
- 4Python String strip() - Programiz
The strip() method removes characters from both left and right based on the argument (a string sp...
- 5Python String strip() Method - W3Schools
Python String strip() Method · Example. Remove spaces at the beginning and at the end of the stri...