I hereby claim:
- I am dvee on github.
- I am davidellis (https://keybase.io/davidellis) on keybase.
- I have a public key ASAAx79lxHyAOBMiVg-qpKpq33rjwr052r560I83B6OKYgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import xlrd | |
| workbook = xlrd.open_workbook("workbook.xls") | |
| sheet = workbook.sheet_by_name("Sheet 1") | |
| d_all = [] | |
| for i_row in range(sheet.nrows): | |
| d_row = [] | |
| for i_col in range(sheet.ncols): | |
| d_row.append(sheet.cell_value(i_row, i_col)) | |
| d_all.append(d_row) |