Python按行讀檔案

來源:互聯網
上載者:User

1. 最基本的讀檔案方法:

# File: readline-example-1.pyfile = open("sample.txt")while 1:    line = file.readline()    if not line:        break    pass # do something

  一行一行得從檔案讀資料,顯然比較慢;不過很省記憶體。

  在我的機器上讀10M的sample.txt檔案,每秒大約讀32000行

2. 用fileinput模組

# File: readline-example-2.pyimport fileinputfor line in fileinput.input("sample.txt"):    pass

  寫法簡單一些,不過測試以後發現每秒只能讀13000行資料,效率比上一種方法慢了兩倍多……

3. 帶緩衝的檔案讀取

# File: readline-example-3.pyfile = open("sample.txt")while 1:    lines = file.readlines(100000)    if not lines:        break    for line in lines:        pass # do something

  這個方法真的更好嗎?事實證明,用同樣的資料測試,它每秒可以讀96900行資料!效率是第一種方法的3倍,第二種方法的7倍!

————————————————————————————————————————————————————————————

  在Python 2.2以後,我們可以直接對一個file對象使用for迴圈讀每行資料:

# File: readline-example-5.pyfile = open("sample.txt")for line in file:    pass # do something

  而在Python 2.1裡,你只能用xreadlines迭代器來實現:

# File: readline-example-4.pyfile = open("sample.txt")for line in file.xreadlines():    pass # do something

 

翻譯自:http://hi.baidu.com/netspider_2007/blog/item/870354c753e4a71c9c163d64.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.