I have an excel spreadsheet that has 2 columns. Something like this
|ColA | ColB |
|Key | Value |
|1 | test |
|2 | test2 |
|3 | test4 |
and I want to read these two columns into a dictionary. I currently have this working but can't figure out how to extract out each key value pair
sh = wb.sheet_by_index(0)
for rownum in range(sh.nrows):
print sh.row_values(rownum)