pandas.DataFrame.shape 返回数据帧的形状
用法
df为Dataframe格式数据
df.shape 返回df形状(2,3) 2行3列
df.shape[0] 返回行数
de.shape[1] 返回列数
参考与详细:
官方文档 https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.shape.html
博 客 https://blog.csdn.net/lwgkzl/article/details/80988126
感谢!