Python中字符串与字典间转换

字典和字符串转换 eval()和str()函数
myDict = eval(myStr)
myStr = str(myDict)
原文地址:https://www.cnblogs.com/end/p/2425977.html