day1/exercise/readmarks.py
author Puneeth Chaganti <punchagan@fossee.in>
Wed, 28 Oct 2009 16:05:14 +0530
changeset 237 78ce38a1e383
parent 64 333092b68926
permissions -rw-r--r--
Added fwdDiff.png file.

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