获得行索引信息

df.index

获得列索引信息

df.columns

获得df的size

df.shape

获得df的行数

df.shape[0]

获得df的列数

df.shape[1]

获得df中的值

df.values