Python Pandas Cara Mendapatkan Ukuran DataFrame

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