I have two distinct Python DataFrames (i.e., with a size of 2*2) as follows:
Mangoes Apples
Mangoes Apples
and,
1 0
0 1
I intend to generate a third DataFrame, so that the output could be:
Mangoes 0
0 Apples
Obviously, i can't multiply both of these Data Frames (i wish i could have done). So, what should be the best way of doing this? Is this something that can be done by Concatenation? or should i start iterating item-by-item for each DataFrame and store the values into a third DataFrame.