回覆列表
-
1 # 使用者3214614706271470
-
2 # cao家h
split是分割函式,將字串分割成“字元”,儲存在一個列表中。預設不帶引數為空格分割。之所以為雙引號的“字元”,因為實際python沒有字元的 。 還可以帶引數根據實際需求進行分割。還可以帶上數字引數,表示“切幾刀”如:
d='a b c d e'
d.split(' ',1)#以空格“切一刀”,就分成兩塊了
['a', 'b c d e']
告知你一個捕魚的方法:>>>importstring>>>help(string.strip)Helponfunctionstripinmodulestring:strip(s,chars=None)strip(s[,chars])->stringReturnacopyofthestringswithleadingandtrailingwhitespaceremoved.IfcharsisgivenandnotNone,removecharactersincharsinstead.Ifcharsisunicode,Swillbeconvertedtounicodebeforestripping.用help()查詢模組,方法等的用途。