赞
踩
data.iloc[:,:2] #即所有行,前两列的数据
data.iloc[:10,:][data.工资>6000]
data.iloc[i, [j]]#第(i+1)行第(j+1)列
参考python下pandas库中读取指定行或列数据(excel或csv)