day1/exercise/readmarks.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 14 Oct 2009 12:43:21 +0530
changeset 112 24992ab48f2b
parent 64 333092b68926
permissions -rw-r--r--
Created the pristine form of the repository for Goa workshop.

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