Python學習筆記 檔案操作

2021-08-22 02:30:02 字數 844 閱讀 3204

f=open('./a.txt','r')#ctrl+i

print(f.readline())

print(f.readline())

f=open('./a.txt')

s=f.read()#講所有文字讀取到乙個字串當中去

ls=f.readlines()#將所有的文字中的每行讀取到乙個列表中去

for line in ls:

print(line)

#encoding 檔案的格式

f=open('./a.txt','r',encoding='gbk')#ctrl+i

print(f.readline())

print(f.readline())

####################################寫檔案

f=open('./b.txt','w',encoding='utf-8')

f.write(' 辛德勒的名單 \n後窗')

f.write(' 好傢伙 \n 驚魂記')

f.close()#關閉檔案,儲存檔案

f=open('./c.csv','w')#csv**檔案,以逗號分割

f.write('辛德勒的名單,後窗,呼嘯山莊\n')

f.write('好傢伙,驚魂記,簡愛\n')

f.close()#關閉檔案,儲存檔案

f=open('./c.csv','w')#csv**檔案,以逗號分割

for i in range(1000):

f.write("{},{}\n".format(i,'我'))

f.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...