Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import pandas as pd
- USERS = pd.DataFrame({'email':['[email protected]','[email protected]','[email protected]','[email protected]','[email protected]']})
- df_result = pd.merge(USERS, EXCLUDE, how='outer', indicator=True)
- df_result[df_result._merge == 'left_only'].drop(labels=['_merge'], axis=1)
Add Comment
Please, Sign In to add comment