dictなstringをパースして本物のdictにするやつ。
>>> import ast >>> ym = ast.literal_eval("{'year' : 2018, 'month' : 12}") >>> type(ym) <type 'dict'>
dictなstringをパースして本物のdictにするやつ。
>>> import ast >>> ym = ast.literal_eval("{'year' : 2018, 'month' : 12}") >>> type(ym) <type 'dict'>