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

看板Python作者 (酷狗喵千代)時間18年前 (2007/03/16 11:27), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串7/8 (看更多)
※ 引述《isong (船沒開啊...)》之銘言: : 最近在練習讀檔的問題 : 假如我有一個檔 "text.txt" : 內容是: : on one of the ossuaries -- "Mariamene" -- offers. : that the tomb is That of : 我寫了一個程式 [deleted] : 請問我有辦法知道文章內有幾個字嗎 : (不包含'--'大小寫也算同一字如: That =that) : (有特殊符號就去掉,如"Mariamene"=Mariamene去掉雙引號 : offset.=offset去掉句點) [deleted] 來個短的 import re words = set([ word.lower() for word in re.findall(r"\w+", open("rf.dat").read()) ]) print len(words), "words in rf.dat counted as following:", words -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 220.139.129.184
文章代碼(AID): #15-WwHY3 (Python)
文章代碼(AID): #15-WwHY3 (Python)