import pandas as pd
df=pd.DataFrame({‘Age’ : [23,35,27,19, 42],
‘Gender’:[“M”,”F”,”M”,”M”, “F”],
‘Education’ : [“Bachelor”, “High School”, “Masters”,”Bachelor”, “Doctorate”]})
df




https://github.com/Laxmihe/python-pandas
Merging Data using python




https://github.com/Laxmihe/Merging-data-usingpython
Blending data in python using concate function


what happens if I put axis = 1 instead of axis = 0

what happens if I change df1 and df2 as df2 and df1

https://github.com/Laxmihe/Blending_data_using_python_concat
