Python Pandas Как получить доступ к столбцу

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

df["column name"]
Yair Mizrachi