Python Pandas Как получить все имена столбцов

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