1.open
使用open開啟檔案後一定要記得呼叫檔案物件的close()方法。比如可以用try/finally語句來確保最後能關閉檔案。
file_object = open('thefile.txt
')
try:
all_the_text =file_object.read( )
finally
: file_object.close( )
2、讀檔案
input = open('data
', 'r'
) #
第二個引數預設為r
input = open('
data
')
讀二進位制檔案
input = open('data', 'rb')
讀取所有內容
1 file_object = open('thefile.txt
')
2try
: 3 all_the_text =file_object.read( )
4finally
: 5 file_object.close( )
讀固定位元組
file_object = open('abinfile
', 'rb'
) try
:
while
true:
chunk = file_object.read(100)
ifnot
chunk:
break
do_something_with(chunk)
finally
: file_object.close( )
讀每行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_object = open('thefile.txt
', 'w'
) file_object.write(all_the_text)
file_object.close( )
寫入多行
file_object.writelines(list_of_text_strings)
注意,呼叫writelines寫入多行在效能上會比使用write一次性寫入要高
python 讀寫方式 seek函式
第一步 排除檔案開啟方式錯誤 r唯讀,r 讀寫,不建立 w新建只寫,w 新建讀寫 二者都 會將檔案 內容清零 以w方式開啟,不能讀出。w 可讀寫 w 與r 區別 r 可讀可寫,若檔案不存在,報錯 w 可讀可寫,若檔案不存在,建立 r 與a 區別 python view plain copy fd o...
python怎麼讀寫 python怎麼讀寫檔案
python怎麼讀寫檔案?讀取操作 一次性讀取整個檔案內容 with open 致橡樹.txt r encoding utf 8 as f print f.read 通過for in迴圈逐行讀取 with open 致橡樹.txt mode r as f for line in f print li...
python怎麼讀寫 python怎麼讀寫檔案
詳細內容 python怎麼讀寫檔案?讀取操作 一次性讀取整個檔案內容 with open 致橡樹.txt r encoding utf 8 as f print f.read 通過for in迴圈逐行讀取 with open 致橡樹.txt mode r as f for line in f pri...