day1/exercise/readmarks.py
author Shantanu <shantanu@fossee.in>
Wed, 28 Oct 2009 14:25:03 +0530
changeset 219 f6725f6bee41
parent 64 333092b68926
permissions -rw-r--r--
Session 4, Debugging and Testing.

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