I want to extract excel columns (NOT rows) into python arrays of array. It has to be arrays, not dictionaries.
The excel file looks like this:
A B C
1 123 534 576
2 456 745 345
3 234 765 285
I want to bring this into python in the following format:
[[123,534,576],[456,745,345],[234,765,285]]
How would I do this? Thank you
xlrdpackagexlrdto pull the columns?[[123, 456, 234], [534, 745, 765], [576, 345, 285]]- either way, usingxlrdit'srow_valuesorcol_values- the documentation is fairly simple to follow...