Answers for "python list of dictionaries to pandas"

7

dataframe to list of dicts

df = pd.DataFrame({'Name': ['John', 'Sara','Peter','Cecilia'],
                   'Age': [38, 47,63,28],
                  'City':['Boston', 'Charlotte','London','Memphis']})

datadict = df.to_dict('records')
Posted by: Guest on October-22-2020
0

python list of dictionaries to list

[d['value'] for d in l if 'value' in d]
Posted by: Guest on February-28-2021

Code answers related to "python list of dictionaries to pandas"

Browse Popular Code Answers by Language