I have a pandas data frame to be read from excel range C54:Q66. Now there are multiple datasets in this .Please see figure.
I want to read the main dataframe (Excel Range C54:Q66) once only and the split the dataframes in 4 separate dataframes like:
dataframe_1 = Excel Range (C54:D64)
dataframe_2 = Excel Range (I54:J64)
dataframe_3 = Excel Range (L54:M65)
dataframe_4 = Excel Range (P54:Q66)
Can you please recommend how to do this in Python using pandas. I know one way is to read these data frame individually from excel file but it takes a lot of time to read the file 4 times and I also know it is inefficient. I know you experts will have an efficient way of achieving this. THANKS!
