Python Pandas Wie man alle Spaltennamen bekommt

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