I tried:
x=pandas.DataFrame(...) s = x.take([0], axis=1)
And s gets a DataFrame, not a Series.
s
df[df.columns[i]]
where i is the position/number of the column(starting from 0).
i
So, i = 0 is for the first column.
i = 0
You can also get the last column using i = -1
i = -1