1.open 開啟檔案
使用open開啟檔案後一定要記得呼叫檔案物件的close()方法。比如可以用try/finally語句來確保最後能關閉檔案。
file_object = open('d:\注:不能把open語句放在try塊裡,因為當開啟檔案出現異常時,檔案物件file_object無法執行close()方法。test.txt')
try:
all_the_text =file_object.read( )
finally
: file_object.close( )
print(all_the_text)
2.讀檔案
讀文字檔案方式開啟檔案
file_object = open('test.txt', 'r')
#第二個引數預設為r
file_object = open('data')
讀二進位制檔案方式開啟檔案
file_object= open('data', 'rb')
讀取所有內容
file_object = open('d:\讀固定位元組test.txt')
try:
all_the_text =file_object.read( )
finally
: file_object.close( )
print(all_the_text)
file_object = open('d:\讀每行test.txt
', 'rb'
)try
:
while
true:
chunk = file_object.read(100)
ifnot
chunk:
break
#do_something_with(chunk)
finally
: file_object.close( )
file_object = open('d:\test.txt', 'rb')
list_of_all_the_lines =file_object.readlines( )
(list_of_all_the_lines)
file_object.close( )
file_object = open('d:\3.寫檔案寫文字檔案方式開啟檔案thefile.txt
', 'rb'
)for line in
file_object:
(line)
file_object.close( )
file_object= open('data', 'w')
寫二進位制檔案方式開啟檔案
file_object= open('data', 'wb')
追加寫檔案方式開啟檔案
file_object= open('data', 'w+')
寫資料
all_the_text="寫入多行aaa\nbbb\nccc\n
"file_object = open('d:\
thefile.txt
', 'w'
)file_object.write(all_the_text)
file_object.close( )
all_the_text="追加aaa\nbbb\nccc\n
"file_object = open('d:\
thefile.txt
', 'w'
)file_object.writelines(all_the_text)
file_object.close( )
file = r'd:\test.txt
'with open(file, 'a+
') as f:
f.write(
'aaaaaaaaaa\n
')
Python檔案讀寫
今天在看python檔案讀寫操作,發現python file name mode buffering file 函式用於建立乙個file物件,它有乙個別名叫open 可能更形象一些,它們是內建函式。來看看它的引數。它引數都是以字串的形式傳遞的。name是檔案的名字。mode 是開啟的模式,可選的值為...
python檔案讀寫
檔案讀寫模式 模式 描述 r以讀方式開啟檔案,可讀取檔案資訊。w以寫方式開啟檔案,可向檔案寫入資訊。如檔案存在,則清空該檔案,再寫入新內容 a以追加模式開啟檔案 即一開啟檔案,檔案指標自動移到檔案末尾 如果檔案不存在則建立 r 以讀寫方式開啟檔案,可對檔案進行讀和寫操作。w 消除檔案內容,然後以讀寫...
python 讀寫檔案
python讀寫檔案在文字不大的情況可以用正常的 open 然後讀入 readline行讀入 或者整體讀入 read readlines 基本知識 file open path,r 說明 第乙個引數是檔名稱,包括路徑 第二個引數是開啟的模式mode r 唯讀 預設。如果檔案不存在,則丟擲錯誤 w 只...