Python零碎知識(6):split 和 join

來源:互聯網
上載者:User

一、關於split 和 join 方法

1隻針對字串進行處理。split:拆分字串、join連接字串
2.string.join(sep):  以string作為分割符,將sep中所有的元素(字串表示)合并成一個新的字串
3.string.split(str=' ',num=string.count(str)):  以str為分隔,符切片string,如果num有指定值,則僅分隔num個子字串。

4.對匯入os模組進行os.path.splie()/os.path.join() 貌似是處理機制不一樣,但是功能上一樣。

二、split()方法

help後的資訊如下:

split(…)S.split([sep [,maxsplit]]) -> list of stringsReturn a list of the words in the string S, using sep as thedelimiter string. If maxsplit is given, at most maxsplitsplits are done. If sep is not specified or is None, anywhitespace string is a separator.

中文翻譯:

split(…)S.split([sep [,maxsplit]]) -> 由字串分割成的列表返回一組使用分隔字元(sep)分割字串形成的列表。如果指定最大分割數,則在最大分割時結束。如果分隔字元未指定或者為none,則分隔字元預設為空白格。

執行個體:

 1 s='a b c' 2 print s.split(' ') 3 st='hello world' 4 print st.split('o') 5 print st.split('o',1) 6  7 --------output--------- 8 ['a', 'b', 'c'] 9 ['hell', ' w', 'rld']10 ['hell', ' world']

注意:分隔字元不可為空,否則會出錯如下:

Traceback (most recent call last):  File "<pyshell#12>", line 1, in <module>    s.split('')ValueError: empty separator
#但是可以有不含其中的分隔字元>>> s.split('x')['a b c']>>> s.split('xsdfadsf')['a b c']

os.path.split()
os.path.split是按照路徑將檔案名稱和路徑分割開,比如d:\\python\\python.ext,可分割為['d:\\python', 'python.exe'],樣本如下:

1 import os2 print os.path.split('c:\\Program File\\123.doc')3 print os.path.split('c:\\Program File\\')4 -----------------output---------------------5 ('c:\\Program File', '123.doc')6 ('c:\\Program File', '')

二、join()

1 a='abcd'2 print '.'.join(a)   3 print '|'.join(['a','b','c'])  #可以把['a','b','c']看做是 a='abcd';下面同理4 print '.'.join({'a':1,'b':2,'c':3,'d':4})

注意:'.'等做分隔字元,將join裡的所有元素(字串)通過分隔字元串連成一個新的字串
可能有人像我一樣咬文嚼字,針對string.join()的定義愛鑽牛角尖,硬生生地將['a','b','c']先轉換為字串,然後在join
如:

1 b=str(['a','b','c'])2 print '|'.join(b)

我以為這樣是正解,但是不然。輸出結果是:[|'|a|'|,| |'|b|'|,| |'|c|'|],而導致與上面不一致的原因就是畫蛇添足了,把['a','b','c']轉換成了字串,在Python中,我們發現字串、元祖、列表它們是序列類型,有著相同的訪問方式,可以以下標來訪問其中的元素。

以上可以再敲一遍試試。

輸入:

1 輸出:2 a.b.c.d3 a|b|c4 a.c.b.d

os.path.join(path1[,path2[,......]])

 1 os.path.join(path1[, path2[, ...]]) 2  3 將多個路徑組合後返回,第一個絕對路徑之前的參數將被忽略。 4  5 >>> os.path.join('c:\\', 'csv', 'test.csv') 6  7 'c:\\csv\\test.csv' 8  9 >>> os.path.join('windows\temp', 'c:\\', 'csv', 'test.csv')10 11 'c:\\csv\\test.csv'12 13 >>> os.path.join('/home/aa','/home/aa/bb','/home/aa/bb/c')14 15 '/home/aa/bb/c'

三、參考推薦

1.http://www.cnblogs.com/luhouxiang/archive/2012/05/22/2514081.html
2.http://docs.python.org/2/library/os.path.html

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.