pandas obtient l'index de la valeur maximale dans la colonne
#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)