I am convinced it is something simply syntactic - I however can not figure out why my code:
import os
from collections import Counter
d = {}
for filename in os.listdir('testfilefolder'):
f = open(filename,'r')
d = (f.read()).lower()
freqs = Counter(d)
print(freqs)
will not work - it apparently can see in to the 'testfilefolder' folder and tell me that the the file is there i.e. an error message 'file2.txt' is not found. So it can find it to tell me that it is not found...
I however get this piece of code to work:
from collections import Counter
d = {}
f = open("testfilefolder/file2.txt",'r')
d = (f.read()).lower()
freqs = Counter(d)
print(freqs)
Bonus - is this a good way of doing what I am trying to do (read from file and count the frequencies of words)? This is my first day with Python (although I have some amounts of programming exp.)
I have to say that I am liking Python!
Thanks,
Brian
As isedev pointed out, listdir() returns just the file names, not the full path (or relative paths). Another way to deal with this problem is to
os.chdir()
into the directory in question, thenos.listdir('.')
.Secondly, it seems your goal is to count frequency of words, not letters (characters). For that, you will need to break up the contents of the files into words. I prefer to use regular expression for this.
Thirdly, your solution counts words frequencies for each files separately. If you ever need to do it for all files, create a
Counter()
object in the beginning, then call theupdate()
method to tally the counts.Without further ado, my solution:
Change:
To:
Which is effectively what you are doing in:
Reason: you are listing the files in 'testfilefolder' (a subdirectory of your current directory) but then trying to open the file in your current directory.