df1=pd.DataFrame({'Product_ID':["55165","80125,30215","55557","92361","32619,28965,20147","88722","82793","70809, 20201","11367"],
'Product': ["ABC",'FDA','FSD','JGH','TYE','BVC','LKJ','HJD','POI'],
'Country':['CN','US','GB','AG','MX','CA','DE','CA','SG']})
df2=pd.DataFrame({'Deal_ID':[70809,88722,82793,20201,55165,30215,11367]})
The df and the list (deal_id) are provided above.
I'd like to return the country information and the product_id adding to df2. I tried to use the join function but Product_ID of df1 is not numeric. Are there any solutions?
Thanks in advance for the help.