i have 2 dataframe
df1: df2:
A B C D X Y Z
1 2 3 4 p2 p3 p4
5 6 7 8
9 10 11 12
How can i concat the 2 dataframe such that the output is
A B C D X Y Z
1 2 3 4 p2 p3 p4
5 6 7 8 p2 p3 p4
9 10 11 12 p2 p3 p4
Currently if i use concat only the first row will be applied with the df2 values but other rows are filled with NaN.