This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |