I have 3 pandas dataframes as :
abc
xyz
colour
type
pattern
colour
type
pattern
lenght
breadth
height
area
lenght
breadth
height
area
I want to combine the dataframes so that it looks like this :
abc colour   length
    type     breadth
    pattern  height
             area 
xyz colour   length
    type     breadth
    pattern  height
             area
I also want to export the end result to an excel sheet so how do i do that without making it look messy?
 
    