首页 > 编程语言 > 详细

Python每日一练(1):计算文件夹内各个文章中出现次数最多的单词

时间:2016-01-20 00:59:31      阅读:174      评论:0      收藏:0      [点我收藏+]
#coding:utf-8
import os,re

path = test
files = os.listdir(path)

def count_word(words):
    dic = {}
    max = 0
    marked_key = ‘‘
    #计算每个单词出现的次数
    for word in words:
        if dic.has_key(word) is False:
            dic[word] = 1
        else:
            dic[word] = dic[word] +1
    #每个字典的值之间做比较,得出最大的那个数字
    for key,value in dic.items():
        if dic[key] > max:
            max = dic[key]
            marked_key = key
    #跳出for循环打印出单词和单词出现的次数
    print(marked_key,max)

for f in files:
    with open(os.path.join(path,f)) as diary:
        words = re.findall("[a-zA-Z]+‘*-*[a-zA-z]", diary.read())
        count_word(words)

#has_key(key) : 函数用于判断键是否存在于字典中,如果键在字典dict里返回true,否则返回false。这里用于判断字典内的键是否出现过。

 

这个是Git上的Python每日一联小项目,写到这里到。

Python每日一练(1):计算文件夹内各个文章中出现次数最多的单词

原文:http://www.cnblogs.com/sxcmos/p/5143771.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!