day1/exercise/readmarks.py
author rivermaker@RivermakerMBP.local
Tue, 27 Oct 2009 11:58:55 +0530
changeset 180 e442b9e23972
parent 64 333092b68926
permissions -rw-r--r--
Made English and low level id changes to session1.tex

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())