Python學習筆記3:簡單檔案操作

來源:互聯網
上載者:User

標籤:方式   檔案名稱   檔案操作   class   adl   filename   nes   學習   pos   

# -*- coding: cp936 -*-
# 1 開啟檔案
# open(fileName, mode)
# 參數:fileName檔案名稱
# mode開啟檔案
# w     以寫方式開啟。
# a     以追加模式開啟 (從 EOF 開始, 必要時建立新檔案)
# r+     以讀寫入模式開啟
# w+     以讀寫入模式開啟
# a+     以讀寫入模式開啟
# rb     以二進位讀模式開啟
# wb     以二進位寫入模式開啟
# ab     以二進位追加模式開啟
# rb+    以二進位讀寫入模式開啟
# wb+    以二進位讀寫入模式開啟
# ab+    以二進位讀寫入模式開啟


# 2 讀取檔案
# read(N) 讀取N個位元組
# readline() 讀取一行
# readlines() 讀取全部行,儲存在列表中。每一個元素是一行


# 3 寫入檔案
# write(str) 將str寫入檔案


# 4 關閉檔案

# close()


範例:

wf = open("file1.txt","w")wf.write("use python to write file")wf.close()# 讀檔案rf = open("file1.txt","r")list = rf.readlines()print list[::]



Python學習筆記3:簡單檔案操作

聯繫我們

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