Re: [問題] 請問一下讀檔的問題

看板Python作者 (huggie)時間18年前 (2007/03/08 18:47), 編輯推噓1(100)
留言1則, 1人參與, 最新討論串6/8 (看更多)
※ 引述《isong (船沒開啊...)》之銘言: : import string : i=open("text.txt","r") : w=[] : for line in i.readlines(): ^^^^^^^^^^^^ 這個 call 檔案太大時會出問題 因為他會把檔案全部讀進記憶體成為一個 list 才開始 loop 建議用 for line in i: 或者直接 for line in open('text.txt'): 乾淨爽快, for loop 結束自動 close() ※ 編輯: huggie 來自: 140.129.160.67 (03/08 18:51)

03/08 21:58, , 1F
嗯嗯~~~很好的建議~~~我會注意的 謝謝
03/08 21:58, 1F
文章代碼(AID): #15x-dGr- (Python)
文章代碼(AID): #15x-dGr- (Python)