pandas index to dictionary code example
Example: dataframe to dictionary using index as key
#Use the Dataframe index as the key of the dictionary
df.to_dict('index')
#Use the Dataframe index as the key of the dictionary
df.to_dict('index')