Can you please help me with this issue i am not able to get around in python pandas Basically i have 2 dataframes as below : df1 Table1 attached as pic
i created a concatenate dataframe from the above two dataframes and got this result : df3=pd.concat([df1,df2],sort=False)
Now i have two columns in above df3 i.e. "a" and "az" which i want to merge as they are the same but have zeroes wherever 2nd dataframe doesnt have data. So is there a way to get a merged column of the two to represent same number i.e. wherever there are zeros in column "a" then it should fill it as the value in column "az" and vice versa.
Appreciate if you can please help. Thanks.