I tried:
x=pandas.DataFrame(...) s = x.take([0], axis=1)
And s gets a DataFrame, not a Series.
s
You can get the first column as a Series by following code:
x[x.columns[0]]