I created the following Series and DataFrame:
import pandas as pd Series_1 = pd.Series({\'Name\': \'Adam\',\'Item\': \'Sweet\',\'Cost\': 1}) Series_2 = pd.S
For printing the Name column
df['Name']