How to add three columns from one data frame to another at a certain position? I want to add these columns after a specific column? DF1=['C','D'] after columns A and B in DF2. So how to join columns in between other columns in another dataframe.
df1=pd.read_csv(csvfile)
df2=pd.read_csv(csvfile)
df1['C','D','E'] to df2['K','L','A','B','F']
so it looks like df3= ['K','L','A','B','C','D','F']