Как определить данные о данных в Python с именем столбца

column_names = ["a", "b", "c"]

df = pd.DataFrame(columns = column_names)
Arrogant Alpaca