使用文件名,字数和外部txt中某些字符串的出现创建csv

时间:2014-03-29 21:19:15

标签: csv count directory

我有一个包含大量txt文件的目录。

对于学术建议我需要创建一个文件csv文件在excel中工作,如下所示: 我需要计算每个txt文件中某些单词出现的次数。

我认为我应该使用类似“for”的东西,但我不确定

我试图用它来访问一个简单的txt文件,但总数总是为0

total = 0 
def check():
    datafile = file('example.txt')
    found = False #this isn't really necessary 
    for line in datafile:
        if alta in line:
            #found = True #not necessary 
            total += 1
    return False #because you finished the search without finding anything

打印总数

结果必须是这样的:

name_of_file,number_of_words_in_file,number_of_occurances

我怎么能在python中做到这一点?

TKS!

0 个答案:

没有答案