Skip to content

Instantly share code, notes, and snippets.

@edubd
edubd / set_operations_dataframes.py
Last active September 6, 2022 05:55
set operations applied to pandas DataFrames
#Set Operations applied to pandas DataFrames
import pandas as pd
#(1)-Defining the DataFrames
# 1.1 Python students
P = pd.DataFrame ({"name":["Elizabeth","Darcy"],
"email":["bennet@xyz.com","darcy@acmecorpus.com"]})
# 1.2 SQL students