1、 開啟檔案使用的是open函式。 open函式的基本語法如下:open(file_name, [access_mode],[ buffering])
引數解析:
file_name變數:是乙個包含要訪問的檔名稱的字串值。
access_mode變數:指開啟檔案的模式,對應有唯讀、寫入、追加等。
buffering:如果buffering的值被設為0,就不會有寄存;如果buffering的值取1,訪問檔案時就會寄存行;如果將buffering的值設為大於1的整數,表示這就是寄存區的緩衝大小;如果取負值,寄存區的緩衝大小就是系統預設的值。
2、關閉檔案使用close函式。
開啟檔案的模式:
)2.1讀檔案
在開啟檔案物件file上呼叫read()函式,對檔案進行讀取。
2.2 寫檔案
在開啟檔案物件file上呼叫write()函式,對檔案進行讀取。
2.2.1 覆蓋寫
path =
"c:/users/asus/desktop/pythonfiletest/firstfile.txt"
file
=open
(path,
'w')
#覆蓋寫
2.2.2 追加寫
path =
"c:/users/asus/desktop/pythonfiletest/firstfile.txt"
file
=open
(path,
'a')
#追加寫
file
.write(
)file
.close(
)
2.3 讀寫行
python為我們提供了readline()、readlines()和writelines()等方法用於行操作。
path =
"c:/users/asus/desktop/pythonfiletest/secondfile.txt"
file
=open
(path,
'w')
#追加寫
2.4 檔案重新命名
python的os模組為我們提供了rename方法,即檔案重新命名。使用這個方法需要匯入os模組。rename方法的語法如下:os.rename(current_file_name,
new_file_name)os為匯入的os模組,current_file_name為當前檔名,new_file_name為新檔名。
python 檔案操作
簡明 python 教程 中的例子,python 執行出錯,用open代替file 可以執行。poem programming is fun when the work is done if you wanna make your work also fun use python f open e ...
python檔案操作
1,將乙個路徑名分解為目錄名和檔名兩部分 a,b os.path.split c 123 456 test.txt print a print b 顯示 c 123 456 test.txt 2,分解檔名的副檔名 a,b os.path.splitext c 123 456 test.txt pri...
Python 檔案操作
1.開啟檔案 如下 f open d test.txt w 說明 第乙個引數是檔名稱,包括路徑 第二個引數是開啟的模式mode r 唯讀 預設。如果檔案不存在,則丟擲錯誤 w 只寫 如果檔案 不存在,則自動建立檔案 a 附加到檔案末尾 r 讀寫 如果需要以二進位制方式開啟檔案,需要在mode後面加上...