I have two dataframes, and I want to create third dataframe with the columns of existing dataframes df1
╔═══════╦═══════╦════════╗
║ A ║ B ║ C ║
╠═══════╬═══════╬════════╣
║ Bob ║ David ║ George ║
║ Jon ║ Aron ║ Cathy ║
║ Cathy ║ Vinod ║ Wills ║
╚═══════╩═══════╩════════╝
df2
╔════════╦═════════╦════════╗
║ D ║ E ║ F ║
╠════════╬═════════╬════════╣
║ Robert ║ Stephen ║ Martin ║
║ Arthur ║ Allen ║ Lilly ║
║ Kristy ║ Calvin ║ Olive ║
║ James ║ Danies ║ Harry ║
╚════════╩═════════╩════════╝
And I need a dataframe like this with columns of df1 & df2 with same empty cells
df3
╔═══════╦════════╦═════════╦════════╗
║ B ║ C ║ E ║ F ║
╠═══════╬════════╬═════════╬════════╣
║ David ║ George ║ Stephen ║ Martin ║
║ Aron ║ Cathy ║ Allen ║ Lilly ║
║ Vinod ║ Wills ║ Calvin ║ Olive ║
║ ║ ║ Danies ║ Harry ║
╚═══════╩════════╩═════════╩════════╝