I've got a csv that I'm reading into a pandas dataframe. However one of the columns is in the form of a dictionary. Here is an example:
ColA, ColB, ColC, ColdD
20, 30, {"ab":"1", "we":"2", "as":"3"},"String"
How can I turn this into a dataframe that looks like this:
ColA, ColB, AB, WE, AS, ColdD
20, 30, "1", "2", "3", "String"
edit I fixed up the question, it looks like this but is a string that needs to be parsed, not dict object.