I have a single column pandas dataframe that looks like where each dictionary is currently a string. I want to convert each item in the pandas to a dictionary and then split it out into separate columns.
Current Look
0         {'Owl': '8109284', 'county': '27'}
1         {'Kid': '298049', 'county': '28'}
2         {'Tree': '190849', 'county': '29'}
3         {'Garden': '9801294', 'county': '30'}
4         {'House': '108094', 'county': '31'}
End Look
           Item     Count      County   County Number
0         'Owl'    '8109284' 'county'     '27'
1         'Kid'    '298049'  'county'     '28'
2         'Tree'   '190849'  'county'     '29'
3         'Garden' '9801294  'county'     '30'
4         'House'  '108094'  'county'     '31'
Can anyone help resolve this. I've tried a bunch of different things.
 
    