- 博客(1)
- 收藏
- 关注
原创 根据词汇输出词频(Python)
import jieba def method(): counts = {} # 建立空字典counts with open('./data.txt', 'r', encoding='utf-8') as p: # 读取文件 txts = p.readlines() for txt in txts: words = jieba.lcut(txt, cut_all=True) # 结巴全模式分词,并保存在words中 # 判.
2021-11-24 21:31:11 325
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人