Python: Dataframe中获取行名和列名的list

df.index.values.tolist()       获取行名
df.columns.values.tolist()     获取列名

你可能感兴趣的:(Python,python)