如何获取 pandas 数据框的行数df?
df您可以使用len()函数或访问属性来获取 pandas DataFrame 中的行数shape。操作方法如下:
df
len()
shape
num_rows = len(df) print(num_rows)
num_rows = df.shape[0] print(num_rows)
len(df)
df.shape[0]``df.shape[1]