I would like to convert a python dict to a pandas dataframe. The number of columns should be equal to number of values for a particular key. From the example below, column names should be i, a, b, c, and d where i is dictionary key and rest are values:
e = {}
for i in range(0,len(length_of_the_row)):
e[i] = a,b,c,d