pandas index column name code example
Example 1: python - give a name to index column
df.index.name # Show me the current name
df.index.name = 'my_column_name' # Change the index name to my_column_name
Example 2: get column pandas
column = df["column_name"]