dict from pandas dataframe code example
Example 1: pandas dataframe from dict
data = {'col_1': [3, 2, 1, 0], 'col_2': ['a', 'b', 'c', 'd']}
pd.DataFrame.from_dict(data)
Example 2: dataframe from dict
pd.DataFrame.from_dict(data)
Example 3: pandas to dictionary
df.to_dict('records')
Example 4: dataframe to dictionary using index as key
#Use the Dataframe index as the key of the dictionary
df.to_dict('index')