I am using pandas to merge two dataframes. I want to add new columns to existing dataframe one as expected the result below. Please kindly help me to do this.
one:
Name Status Dummy
Kumar Done 1
Shankar Progress 1
Shankar Done 2
sekar no 0
Two:
Name Status Remarks Temp
Shankar Progress Good 5
Shankar Done Very 6
Expected Result :
Name Status Dummy Remarks Temp
Kumar Done 1 0
Shankar Progress 1 Good 5
Shankar Done 2 very 6
sekar no 0 0