convert dataframe to dictionary with one column as key code example

Example 1: dataframe to dictionary with one column as key

pd.Series(df.A.values,index=df.B).to_dict()

Example 2: pandas to dictionary

df.to_dict('records')

Example 3: convert pandas dataframe to dict with a column as key

df.set_index('columnName').T.to_dict()

Example 4: dataframe to dict without index

{'Name': ['John', 'Sara', 'John', 'Sara'],
 'Sem': ['Sem1', 'Sem1', 'Sem2', 'Sem2'],
 'Subject': ['Mathematics', 'Biology', 'Biology', 'Mathematics'],
 'Grade': ['A', 'B', 'A+', 'B++']}