标签: python pandas
d = {'col1': [33,34], 'col2': [5,6]} d1 = {'col1': [33,34], 'col2': [5,6]} df = pd.DataFrame(data=d) type(df[['col1']])
上面的类型是一个数据框,我怎样才能使它成为变化最小的系列?
答案 0 :(得分:1)
使用单个[]。
type(df['col1'])
输出:
pandas.core.series.Series