df_list1=[A,B,C]
df_list2=[A,B,C]
I want to use pandas concat to concatenate A(df_list1) to A(df_list2), B to B like wise without loop. Here A, B, C are dataframes. I have tried iterating one of the list and just concatenating one dataframe from each list at a time.
i=0
for df in df_list1:
l=[df,df_list2[i]]
df=pd.concat(l)
i=i+1
Could someone help me doing this without loop as I have certain time execution requirement(basically I need to reduce time)?