python3 讀寫檔案的兩種小方法

2021-08-08 14:33:09 字數 394 閱讀 4662

7.

乙個新的語句,

with

a=open(r'c:\users\xiaoming\desktop\qqq.txt','w')

a.write('sdgshgafg\nsdtdfghfsd\nsdfsdfdsf')

a.close()

普通的開啟檔案可以這樣寫,但是最後還要加

close

()必須加。而用

with

語句則可以避免這種步驟。

with open(r'c:\users\xiaoming\desktop\qqq.txt','a')as a:

a.write('\niamachianese\nhaaha')

這裡就相當於前面三句話,

with open as:

python3讀寫檔案

一 系統預設的編碼格式為utf8 二 讀寫檔案時通過引數encoding utf8 指定編碼格式,否則檔案在本地開啟時會亂碼 與系統預設編碼不符,參考第1條 三 例項 設定編碼格式為utf8,本地開啟和程式讀取都展示正常,無亂碼 text 我是xx,我愛python f open a.txt w e...

讀寫ASCII檔案的兩種方式

讀寫ascii檔案的兩種方式 讀取檔案的路徑 example idl asciifile file dirname routine filepath test readf data ascii.txt idl asciifile f crfurtherstudy idl idl85workspace...

Python3基礎 讀寫檔案

檔案是作業系統管理和儲存資料的一種方式。python內建了 open 函式來開啟檔案,並建立乙個檔案物件。一 開啟檔案 open 函式 1 open 函式基本格式 myfile open filename,mode 意思是 myfile 為引用檔案物件的變數 filename 為檔名,可以是檔案的絕...