day1/exercise/readmarks.py
author Puneeth Chaganti <punchagan@fossee.in>
Wed, 28 Jul 2010 19:30:34 +0530
changeset 437 3547b6f299b4
parent 64 333092b68926
permissions -rw-r--r--
Fix title of day1/cheatsheet3.

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