python中利用jieba庫統計詞頻,counts[word] = counts.get(word,0)+1的使用

import jieba txt = open("阿甘正傳-網絡版.txt","r",encoding ="utf-8").read() words = jieba.lcut(txt) #用jieba庫對文本進行中文分詞,輸出可能的分詞的精確模式 counts ={} #新建一個空字典 for word in words: if len(w
相關文章
相關標籤/搜索