檔案操作,無外乎讀寫,但首先你要開啟檔案,本文簡要介紹,原文見python檔案讀寫 。
f = open(filename, mode)
filename是檔名,可以帶目錄;mode是讀寫模式(可以是讀,寫,追加等);f是file handler。
f.close()
注意,write
不會自動加入\n
,這一點不像print
。
f =
open
('myfile.txt'
,'w'
)# open file for writing
f.write(
'this is first line\n'
)# write a line to the file
f.write(
'this is second line\n'
)# write one more line
f.close(
)
總共有三個模式:
讀取所有內容
f =
open
('myfile.txt'
,'r'
)f.read(
)
'this is first line\nthis is second line\n'
f.close(
)
讀取所有行f =
open
('myfile.txt'
,'r'
)f.readlines(
)
['this is first line\n', 'this is second line\n']
f.close(
)
讀取一行f =
open
('myfile.txt'
,'r'
)f.readline(
)
'this is first line\n'
f.close(
)
f =
open
('myfile.txt'
,'a'
)f.write(
'this is third line\n'
)
f.close(
)
f =
open
('myfile.txt'
,'r'
)for line in f:
print line,
this is first line
this is second line
this is third line
f.close(
)
with
open
('myfile.txt'
,'r'
)as f:
for line in f:
print line,
this first line
this second line
this is third line
with
open
('myfile.txt'
,'r'
)as f:
for line in f.readlines():
print line,
this is first line
this is second line
this is third line
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 只...