Python Pandas, wie Sie die Datenrahmengröße erhalten

import pandas as pd
df = pd.read_csv("file path.csv")
df.shape()
Yair Mizrachi