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

看板Python作者 (哇哇哇○( ̄﹏ ̄)○)時間18年前 (2007/03/04 01:17), 編輯推噓1(100)
留言1則, 1人參與, 最新討論串2/8 (看更多)
※ 引述《isong (船沒開啊...)》之銘言: : 最近在練習讀檔的問題 : 假如我有一個檔 "text.txt" : 我想要輸出的結果為 : ['is','mariamene', 'of', 'offers', 'on', 'one', 'ossuaries', : 'that', 'tomb'] 不只9個吧?你少了一個 the -- #!/usr/bin/python import re result = {} pattern = re.compile(r'(\w+)') f = open('text.txt', 'r') for line in f: for word in pattern.finditer(line): key = word.group(1).lower() if result.has_key(key): result[key] = result[key] + 1 else: result[key] = 1 f.close() print str(result.keys()) -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.127.72.61

03/04 10:24, , 1F
非常謝謝,還要再研究研究
03/04 10:24, 1F
文章代碼(AID): #15wQsvVp (Python)
討論串 (同標題文章)
文章代碼(AID): #15wQsvVp (Python)