Python Pandas Wie man auf eine Spalte zugreift

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

df["column name"]
Yair Mizrachi