python檔案處理
open函式
python的內建open函式開啟乙個檔案,建立乙個file物件,相關的方法可以呼叫對它進行讀寫操作
語法:file object = open(filename,access_mode)
r(read)只以讀方式開啟,檔案的指標將會放在檔案的開頭,預設
rb以二進位制格式開啟乙個檔案,用於唯讀 指標也是在檔案開頭
r+開啟乙個檔案用於讀寫 指標同樣在開頭
w(write)開啟乙個檔案 用於寫操作 如果該檔案已經存在,那麼將其覆蓋,如果不存在 建立乙個新檔案
wb
w+讀寫
a開啟乙個檔案用於追加,指標在末尾
ab
a+用於讀寫
ab+
python檔案處理
def cal input input.txt output output.txt cal方法為主程式,推薦這樣做而不是python.exe xx.py 預設引數為python目錄的兩個txt,如為其他檔案自己指定。infile file input,r 開啟源資料檔案 outfile file o...
python 檔案處理
1.開啟檔案 open a.txt 當前目錄下的a.txt open root a.txt 開啟某個目錄下的檔案 2.按行顯示檔案 a open a.txt a.readline ni hao n a.readline wo xianzai hen xiang ni n a.readline ni ...
Python檔案處理
open name mode buf read size readline size readlines size 這裡的size是指,io定義的default buffer size為單位大小 iter 迭代器迭代每行 write str writelines sequwence of strin...