關於Python的檔案IO

2022-04-29 17:00:11 字數 659 閱讀 4992

使用open函式,

第乙個引數為檔名,

例如「c:\abc.txt」,這裡要注意的是r「c:\abc.txt」。

第二個引數為檔案的操作方式,

這裡著重**寫入,

寫入主要分為覆蓋寫入和追加寫入。

file = open(r'c:\abc.txt','w')

file.write("abc") #寫入字串

file.close #關閉檔案

file = open(r'c:\abc.txt','a')

file.write("abc") #寫入字串

file.close #關閉檔案

使用open函式,

第乙個引數為檔名,

例如「c:\abc.txt」,這裡要注意的是r「c:\abc.txt」。

第二個引數為檔案的操作方式,

這裡著重**寫入,

寫入主要分為覆蓋寫入和追加寫入。

file = open(r'c:\abc.txt','w')

file.write("abc") #寫入字串

file.close #關閉檔案

file = open(r'c:\abc.txt','a')

file.write("abc") #寫入字串

file.close #關閉檔案

關於檔案IO

對作業系統而言,所有的東西都是一種檔案.能用記事本開啟的程式語言寫的.cs.c.cpp.js.txt.ini.bat.txt input 輸入 寫檔案 output 輸出 讀取檔案 system.io包含了針對檔案操作的一些class streamreader 是乙個class 針對能夠使用記事本開...

python中的檔案I O

讀檔案 f open 檔案路徑 r 讀文字檔案 rb 讀二進位制檔案 encoding utf 8 指定讀取時的字元編碼 寫檔案 f open 檔案路徑 w 寫入 a 追加寫入 wb 寫入二進位制 ab 追加寫入二進位制 檔案操作 關閉檔案 f.close 說明 open 函式向作業系統發起呼叫,開...

python中的檔案IO

1.程式中的資料,寫入到檔案中 file open data 1.1.text mode w encoding utf 8 程式中有乙個字串 message hello,世界 將資料寫入到檔案中 file.write message 關閉檔案 file.close 2.將檔案中的資料,讀寫到程式中 ...