I have two dataframes created using pandas, I want to concatenate them so that the indexes of the two come one after the other. For example,
df1:
    x    y
a   10   30
b   20   40
df2:
    x    y
a1  11   31
b1  21   41
required output:
    x    y
a   10   30
a1  11   31
b   20   40
b1  21   41
 
     
    