Please find below my input/output :
INPUT :
dico = {'abc': 'val1=343, val2=935',
'def': 'val1=95, val2=935',
'ghi': 'val1=123, val2=508'}
OUTPUT (desired) :
I tried with pd.DataFrame.from_dict(dico, index=dico.keys) but unfortunately I got an error.
TypeError: DataFrame.from_dict() got an unexpected keyword argument 'index'
Do you have any suggestions please ?
