From 9ca9d7ca7b91848630b9ab4224323422b75b4833 Mon Sep 17 00:00:00 2001 From: Madhusudan.C.S Date: Thu, 8 Oct 2009 18:59:47 +0530 Subject: Added quiz tex file and all exercise problems Madhu worked out. --- day1/exercise/kwfreq.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 day1/exercise/kwfreq.py (limited to 'day1/exercise/kwfreq.py') diff --git a/day1/exercise/kwfreq.py b/day1/exercise/kwfreq.py new file mode 100644 index 0000000..32a8765 --- /dev/null +++ b/day1/exercise/kwfreq.py @@ -0,0 +1,14 @@ +import keyword +f = open('/home/madhu/pyprogs/pytriads.py') + +freq = {} +for line in f: + words = line.split() + for word in words: + key = word.strip(',.!;?()[]: ') + if keyword.iskeyword(key): + value = freq.get(key, 1) + freq[key] = value + 1 + +print freq + -- cgit