Hi Everyone,
I'm using an email verification software to check if emails in my dataset are valid or not. How do I use pandas to match the email in the column named "Valid Email" to the column "Email" and return the value in "Good_Email"? To be clear the result could look like
Good_Email
bob_45@gmail.com
nan
tom34@gmail.com
nan
Also lets assume that the column named "Valid Email" will be ordered randomly compared to the column "Email" and can be shorter in length. (i.e. Exactly as presented in the example).
Thanks in advance!