import pandas as pd
# define your series and its index
my_list = [1, 2, 3, 4, 5, 6]
my_index = ['one', 'two', 'three', 'four', 'five', 'six']
# create your series by using pd.Series()
my_series = pd.Series(my_list, index=my_index)
# convert into a df using the constructor of DataFrame
df = pd.DataFrame({'Index': my_series.index, 'Values': my_series.values})
# print the data frame and column
print(df)
print(df.columns)