I have an excel spreadsheet that I need to read the values into arrays as follows
A[0] to A[24] needs to have the values of E4 to E28
B[0] to B[24] needs to have the values of H4 to H28
C[0] to C[24] needs to have the values of K4 to K28
and so on where I am reading every 3rd column for a total of 7 columns.
How would I do this in Python 2.7? Any suggestions or help would be great. I have worked out how to read a single cell into a variable, but need to make this a less manual process than have to manually read and assign 175 cells.
