I've got a file that has a header row with a fixed number of labels and rows of variable length. The last column has a field that should really be a sublist of items, but this list is treated as a continuum of columns.
Example:
Name, Address, Telephone
"Bob Smith", "123 main st", "111-111-1111"
"Jon Smith", "123 main st", "111-111-1111", "222-222-2222"
I ultimately want to iterate over the sublist, in this case telephone #'s.
I've tried using csv dictreader but it drops the extra columns.
Thanks in advance.