Python Pandas Как получить размер данных

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