Python pandas comment accéder à une colonne

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

df["column name"]
Yair Mizrachi