Python pandy, jak uzyskać rozmiar ramki danych

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