python代碼簡單實現一個詞頻統計

python代碼簡單實現一個詞頻統計python path = 'C://Users/DELL/Desktop/Text.txt' with open(path, 'r') as text: words = text.read().split() print(words) for word in words: print('{}-{}times'.forma
相關文章
相關標籤/搜索