Python進階02 文字檔的輸入輸出

來源:互聯網
上載者:User

作者:Vamei 出處:http://www.cnblogs.com/vamei 歡迎轉載,也請保留這段聲明。謝謝!

 

Python具有基本的文字檔讀寫功能。Python的標準庫提供有更豐富的讀寫功能。

文字檔的讀寫主要通過open()所構建的檔案對象來實現。

1. 開啟檔案,建立檔案對象。

f = open(檔案名稱,模式)

最常用的模式有:

"r"     # 唯讀

“w”     # 寫入

 

2. 檔案對象的方法:

讀取方法:

content = f.read(N)          # 讀取N bytes的資料

content = f.readline()       # 讀取一行

content = f.readlines()      # 讀取所有行,儲存在表中,每個元素是一行。

寫入方法:

f.write('I like apple')      # 將'I like apple'寫入檔案

 

關閉檔案:

f.close()

 

3. 迴圈讀入檔案:

(該方法已經從Python 3中刪除,請盡量避免使用)

for line in file(檔案名稱):    print line

利用file()函數,我們建立了一個迴圈對象。在迴圈中,檔案的每一行依次被讀取,賦予給line變數。

 

總結:

f    = open(name, "r")

line = f.readline()

f.write('abc')

f.close()

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.