I have one data frame which has one column & two records in it.
DF1=
Name
M_D
ABC123
I have another dataframe which has two columns. I need to rename second dataframe columns with two values in first data frame.
DF2=
PQR LMN
111 345
456 999
I want DF2 as below
M_D ABC123
111 345
456 999
Thanks