ENH: Enhanced the problem set building on the image handing and arrays.
Illustrated dtypes, casting and their importance along with an example
using RGBA images. Also introduce edge detection.
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())