Display/Print one column from a DataFrame of Series in Pandas
For printing the Name column
df['Name']
By using to_string
print(df.Name.to_string(index=False))
Adam
Bob
Cathy
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