1. 首页
  2. 数据库
  3. 其它
  4. 求大佬指点写的是三国演义中文文本的词频统计可是总是报错(已解决)

求大佬指点写的是三国演义中文文本的词频统计可是总是报错(已解决)

上传者: 2021-02-01 10:41:58上传 PDF文件 231.66KB 热度 6次
1.首先是这样写的: import jieba txt = open(D:/python程序/threekingdoms.txt,rt,encoding='utf-8').read() words=jieba.lcut(txt) counts={} for word in words: if len(word)==1: continue else: counts[word]=counts.get(word,0)+1 items=list(counts.items()) items.sort(key=lambda x:x[1],reverse=True)
下载地址
用户评论