#### the data is inverted #######
#### To bring back to its original position #######
df_1= df_i.iloc[::-1]
#### Set index again ###################
df_1.index = range(len(df_1.index))
#
In for I am creating a data frame df , But I want the data frame name as df_0, df_1, df_2 .......................... df_n
On every iteration I want create a new data frame, How?
And my count = 22, That means my loop will run for 22 times.
Is there a way that I concat horizontally all the data frames as a single dta frame
14, 15, 16 (from first sheet), 14A, 15A, 16A (from second Sheet), 14B,15B, 16B,(From Third sheet) as col1, col2, col3,col4.......................
Appreciate your help