day1/exercise/readmarks.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 27 Oct 2009 12:50:19 +0530
changeset 184 9efa777af2e2
parent 64 333092b68926
permissions -rw-r--r--
Reworked on Session 3 day 1 slides. Changed problem statement. Solved the problem. Included pie charts.

f = open('/home/madhu/Desktop/marks.dat')

for line in f:
    fields = line.split(';')
    print "Name: %s, Total Marks: %s" % (fields[2].strip(), fields[8].strip())