Added breaks to plan so I could think though the timing when drafting the summary.
freq = {}for line in f: words = line.split() for word in words: key = word.strip(',.!;?()[]: ') if keyword.iskeyword(key): if key in freq: freq[key] += 1 else: freq[key] = 1print freq