字串的分割一向是我們處理一些資料的常用方法,下面我們看看如下解析:
函式宣告
def split(self, sep=none, maxsplit=none)
str = "i am a boy."
當不給split函式傳遞任何引數時,分隔符sep會採用任意形式的空白字元:空格、tab、換行、回車以及formfeed。maxsplit引數表明要分割得到的list長度。
str = "i am a boy."
print( str.split() )
輸出:['i', 'am', 'a', 'boy.']
str = "i\tam\ta\tboy."
print( str.split() )
輸出:['i', 'am', 'a', 'boy.']
這時如果你的字串中包含各種符號,python會自動為您解決,哈,python就是那麼牛啊:
Python split 函式例項用法講解
在pythonwww.cppcns.com中,split 方法可以實現將乙個字串按照指定的分隔符切分成多個子串,這些子串會被儲存到列表中 不包含分隔符 作為方法的返回值反饋回來。split sep none,maxsplit 1 引數sep 分隔符,預設為所有的空字元,包括空格 換行 n 製表符 t...
Python split 函式的用法理解
url path url.split 1 print path 輸出結果為 image01.jpg split 拆分字串,通過指定分隔符對字串進行切片,並返回分割後的字串列表 list 語法 str.split str num string.count str n 引數說明 str 表示為分隔符,預...
Python split 函式用法及簡單實現
split sep none,maxsplit 1 例子 string hello world nice to meet you string.split hello world nice to meet you string.split 3 hello world nice to meet you...