Python中檔案的讀寫操作

2021-08-21 09:32:35 字數 804 閱讀 6539

在操作檔案之前先要了解各東西,with python中的上下文管理器。

python官方文件:with 語句適用於對資源進行訪問的場合,確保不管使用過程中是否發生異常都會執行必要的「清理」操作,釋放資源,比如檔案使用後自動關閉、執行緒中鎖的自動獲取和釋放等。

#不使用with:

f=open("test.txt:,'w')

f.write("用python寫入檔案")

f.close()

#使用with:

with open("test.txt",'w') as f:

f.write("用python寫入檔案")

#不適用with

f=open("test.txt",'r')

data=f.read()

print(data)

f.close()

#使用with

with open("test2.txt",'r') as f:

data=f.read()

print(data)

#open的格式:open("要操作的檔名",'檔案的操作模式')
檔案的操作模式如下:

引用自菜鳥教程(

Python中檔案讀寫

2019 06 01 python中的檔案讀寫 操作檔案過程如下 1 開啟檔案 格式 open path,flag encoding errors path 表示要開啟檔案的路徑,flag 表示開啟方式 r 以唯讀的方式開啟檔案,檔案的描述符放在檔案的開頭 rb 以二進位制格式開啟檔案用於唯讀,檔案...

python中檔案的讀寫

w 只寫,會清空檔案原有的內容,檔案不存在則建立檔案 在檔案file.txt 中寫入hello python hello zxn filename file.txt 1.開啟檔案 f open filename,w 2.對檔案操作 f.write hello python hello zxn 3.關...

Android中檔案的讀寫操作

一 讀取assets目錄下的檔案 try catch ioexception e 二 讀取raw目錄下的檔案 try catch ioexception e 三 讀取手機儲存檔案 內建 try catch filenotfoundexception e catch unsupportedencodi...