Spencer Parker wrote:
> So if my long row is row two...how do I tell it to use row 2?

csv_data = csv.reader(file('output.txt','r'))
headers = csv_data.next() # Skip header row
row = csv_data.next() # The row with data

Kent
_______________________________________________
Tutor maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/tutor

Reply via email to