须臾里
搜索
Python pandas: 获取Dataframe的行数和列数
2020-09-13
作者: xy 分类:
量化 / 学习笔记
pandas: 获取Dataframe的行数和列数
#列数 df.shape[1] #行数 df.shape[0] 或者:len(df)
python