2016-03-24 Python 字符串转换成字典 如何将一个字符串(string)转为字典(dict)呢? 只要用 eval()或exec() 函数就可以实现了 12345678>>> a = "{'a': 'hi', 'b': 'there'}">>> b = eval(a)>>> b{'a': 'hi', 'b': 'there'}>>> exec ("c=" + a)>>> c{'a': 'hi', 'b': 'there'}>>> 参考链接 Python中将字符串类型转为字典类型(string to dict) Newer Python 解析配置模块 ConfigParser Older Python utf-8编码的16进制字符串转换成对应的文字