1.檔案讀取
file=open("path/file.txt","r",encoding="utf-8")
file.read()//讀取全文
file.readline()//讀取單行
file.close()
2.檔案的寫入
1)非追加,替換之前的內容
file=open("path/file.txt","w")
file.write(data)//寫入檔案
file.write(data2)//此時是不會刪除data的,因為data和data2是一起儲存的
file.close()//關閉並儲存
2)追加寫入
file=open("path/file.txt","a+")
file.write(data)//寫入檔案
file.close()//關閉並儲存
Python學習筆記《檔案操作》
python的檔案操作容易上手,我選取了一些比較常用的。keep 開啟檔案 和c有點相像 f open friend.cpp 會讀取出來整個檔案的內容 小心記憶體不夠 f.read f.close with open friend.cpp as f f.read 逐行讀取 readlines 可以返...
python學習筆記 檔案操作
python檔案操作流程 開啟 讀寫 關閉 1.開啟檔案及開啟方式 file obj open filename mode filename 原字串 r d text.t 轉義字串 d text.t mode r w a b 唯讀r 可寫 w 此外還有a,b 2.讀寫 1.var file obj....
Python學習筆記 檔案操作
掌握點 列印螢幕 print方法,可以使用逗號 列印多個值 如 print 總數量 totallines讀取鍵盤輸入 1 raw input 提示資訊 從標準輸入讀取乙個行,並返回乙個字串 去掉結尾的換行符 str raw input 請輸入資訊 print str2 input 提示資訊 與raw...