Os pandas obtêm índice de valor máximo na coluna
#use this to get the index of the max value of a column
max_index = column.idxmax()
Comfortable Cardinal
#use this to get the index of the max value of a column
max_index = column.idxmax()
# applying idxmax() function.
df.idxmax(axis = 0)