1.open
使用open開啟檔案後一定要記得呼叫檔案物件的close()方法。比如可以用try/finally語句來確保最後能關閉檔案。
file_object = open('thefile.txt')
try:
all_the_text = file_object.read( )
finally:
file_object.close( )
注:不能把open語句放在try塊裡,因為當開啟檔案出現異常時,檔案物件file_object無法執行close()方法。
2.讀檔案
讀文字檔案
input = open('data', 'r')
#第二個引數預設為r
input = open('data'程式設計客棧)
讀二進位制檔案
input = open('data', 'rb')
讀取所有內容
file_object = open程式設計客棧('thefile.txt')
try:
all_the_text = file_object.read( )
finally:
file_object.close( )
讀固定位元組
file_object = open('abinfile', 'rb')
try:
while true:
chunk = file_object.read(100)
if not chunk:
break
do_something_with(chunk)
finally:
file_object.clo程式設計客棧se( )
讀每行list_of_all_the_lines = file_object.readlines( )
如果檔案是文字檔案,還可以直接遍歷檔案物件獲取每行:
for line in file_object:
process line
3.寫檔案
寫文字檔案
output = open('data', 'w')
寫二進位制檔案
output = open('data', 'wb')
追加寫檔案
output = open('data', 'w+')
寫資料file = open('thefile.txt', 'w')
f程式設計客棧ile_object.write(all_the_text)
file_object.close( )
寫入多行
file_object.writelines(list_of_text_strings)
注意,呼叫writelines寫入多行在效能上會比使用write一次性寫入要高。
本文標題: python open讀寫檔案實現指令碼
本文位址:
python open 檔案讀寫
一 python檔案讀寫的幾種模式 r,rb,w,wb 那麼在讀寫檔案時,有無b標識的的主要區別在 呢?1 檔案使用方式標識 r 預設值,表示從檔案讀取資料。w 表示要向檔案寫入資料,並截斷以前的內容 a 表示要向檔案寫入資料,新增到當前內容尾部 r 表示對檔案進行可讀寫操作 刪除以前的所有資料 r...
Python open讀寫檔案實現指令碼
zz python中檔案操作可以通過open函式,這的確很像c語言中的fopen。通過open函式獲取乙個file object,然後呼叫read write 等方法對檔案進行讀寫操作。1.open 使用open開啟檔案後一定要記得呼叫檔案物件的close 方法。比如可以用try finally語句...
Python open讀寫檔案實現指令碼
python中檔案操作可以通過open函式,這的確很像c語言中的fopen。通過open函式獲取乙個file object,然後呼叫read write 等方法對檔案進行讀寫操作。1.open 使用open開啟檔案後一定要記得呼叫檔案物件的close 方法。比如可以用try finally語句來確保...