最佳答案
如何从df中选择列a和b,并将它们保存到新的数据框df1中?
index a b c1 2 3 42 3 4 5尝试失败:
df1 = df['a':'b']df1 = df.ix[:, 'a':'b']