Python Pandas Cara Mendapatkan Semua Nama Kolom

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