Python Pandas Cara Mengakses Kolom

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

df["column name"]
Yair Mizrachi