激动毛衣

文章
6
资源
1
加入时间
3年0月8天

python 文档英文词频统计

import re, collections#找到所有的单词def words(text): return re.findall('[a-z]+', text.lower()) def train(features): model = collections.defaultdict(lambda: 1) for f in features: model[f...