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']
Not sure what you are really after but if you want to print exactly what you have you can do:
Option 1
print(df['Item'].to_csv(index=False))
Sweet
Candy
Chocolate
Option 2
for v in df['Item']:
print(v)
Sweet
Candy
Chocolate
By using to_string
print(df.Name.to_string(index=False))
Adam
Bob
Cathy