Re: question about csv.DictReader
Thanks for your replies. Greatly appreciated. Norm -- http://mail.python.org/mailman/listinfo/python-list
question about csv.DictReader
Hello, I have the following python script (some of lines are wrapped): #! /usr/bin/env python import csv def dict_test_1(): """ csv test program """ # Open the file Holdings_EXA.csv HOLDING_FILE = 'Holdings_EXA.csv' try: csv_file = open(HOLDING_FILE, 'rt') except I