實現對Hamlet的文本詞頻統計

代碼以下:python #CalHamletV1.py def getText():     txt=open("hamlet.txt","r").read()     txt=txt.lower()     for ch in '!"#%&()*+,-./:;<=>?@[\\]^_{|}·~''':         txt=txt.replace(ch,"")     return txtorm
相關文章
相關標籤/搜索