I have a dataframe:
df1=pd.DataFrame(columns=["d","e"],data=[(3,1),(2,4),(8,4),(5,1)])
looking like this:
    d   e
0   3   1
1   2   4
2   8   4
3   5   1
and another df2=pd.DataFrame(columns=["a","b","c"],data=[(3,4,5)]) that looks like that:
    a   b   c
0   3   4   5
I want to add the one row dataframe to the bigger one repeating the same values across rows: Expected result is like this:
    d   e   a   b   c
0   3   1   3   4   5
1   2   4   3   4   5
2   8   4   3   4   5
3   5   1   3   4   5
 
    