Python Pandas提取指定行列

取列

通过列名称来提取指定列

get_data=data[['姓名','性别']]

取行

获取第5行的数据

df5 = df.iloc[5]

你可能感兴趣的:(Pandas数据分析,pandas,数据分析,数据挖掘)