I have 2 dataframes and I want to find common matches based on a column (tld), once match has been found, I want to update column match as True. How to update column in destinat
This will achieve what you want:
destination["match"] = destination["tld"].isin(source.tld)