在直接,到目前爲止我的代碼是這樣的:計數唯一單詞在Python
from glob import glob
pattern = "D:\\report\\shakeall\\*.txt"
filelist = glob(pattern)
def countwords(fp):
with open(fp) as fh:
return len(fh.read().split())
print "There are" ,sum(map(countwords, filelist)), "words in the files. " "From directory",pattern
我想補充一點,從計算模式的獨特字(42 txt文件在這條道路),一個代碼,但我不知識。有誰能夠幫助我?
通過唯一字,你的意思是說只有一次事件的詞,或者你的意思是你想要每一個詞的次數? – 2012-08-10 10:37:38