Combine and fill a Pandas Dataframe with the single row of another
If I have two dataframes: df1: df1 = pd.DataFrame({‘A’:[10,20,15,30,45], ‘B’:[17,33,23,10,12]}) A B 0 10 17 1 20 33 2 15 23 3 30 10 4 45 12 df2: df2 = pd.DataFrame({‘C’:[‘cat’], ‘D’:[‘dog’], ‘E’:[’emu’], ‘F’:[‘frog’], ‘G’:[‘goat’], ‘H’:[‘horse’], ‘I’:[‘iguana’]}) C D E F G H I 0 cat dog emu frog goat horse iguana How do I… Read More Combine and fill a Pandas Dataframe with the single row of another