python中strip是字串中的方法。
Python strip() 方法用於移除字串頭尾指定的字元(預設為空格)或字元序列。 (推薦學習:Python影片教學)
注意:此方法只能刪除開頭或是結尾的字符,不能刪除中間部分的字元。
strip()方法語法:
str.strip([chars]);
#chars -- 移除字串頭尾指定的字元序列。
傳回值
傳回移除字串頭尾指定的字元序列所產生的新字串。
實例
以下實例展示了strip() 函數的使用方法:
#!/usr/bin/python3 str = "*****this is **string** example....wow!!!*****" print (str.strip( '*' )) # 指定字符串 *
以上實例輸出結果如下:
this is **string** example....wow!!!
從結果上看,可以注意到中間部分的字元並未刪除。
更多Python相關技術文章,請造訪Python教學欄位學習!
以上是python中strip什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!