首页 > 代码库 > 利用python处理文档中各字段出现的次数并排序
利用python处理文档中各字段出现的次数并排序
1 import string 2 path = ‘waldnn‘ 3 with open(path,‘r‘) as text: 4 words = [raw_word.strip(string.punctuation).lower() for raw_word in text.read().split()] 5 words_index = set(words) 6 counts_dict = {index:words.count(index) for index in words_index} 7 8 for word in sorted(counts_dict,key=lambda x: counts_dict[x],reverse=True): 9 print(‘{} -- {} times‘.format(word,counts_dict[word]))
利用python处理文档中各字段出现的次数并排序
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。