I have 2 dataframe with df1 and df2 , df1 contains column Country code and Country name , df2 contains column Name , dept , Country Code. I want to add Country name from df1 to df2 with respect to Country Code. Any solution for this?
            Asked
            
        
        
            Active
            
        
            Viewed 59 times
        
    1 Answers
0
            
            
        if they have organised records, this should work
df2.country = df1.country
 
    
    
        Anmol Parida
        
- 672
- 5
- 16
- 
                    The data is not organised – Sabeo Nunes Sep 14 '20 at 10:17
