csv module


Posted: 2006/12/22 12:46:00 | Source | More posts about Uncategorized

There is a csv module in python :) You can use it like:

import csv
reader = csv.reader(open(‘details.csv’, ‘r’))
for row in reader:
        print row

comments powered by Disqus
Contents © 2004-2014 Kushal Das - Powered by Shonku