day1/exercise/readmarks.py
author rivermaker@RivermakerMBP.local
Tue, 27 Oct 2009 12:01:11 +0530
changeset 181 3035997de161
parent 64 333092b68926
permissions -rw-r--r--
Merged Asokan and Mainline branches.

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