字符串变dict
Posted bluefire-py
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串变dict相关的知识,希望对你有一定的参考价值。
1.eval
2.json
# NameError: name
# ‘null‘ is not defined
# i_dict=eval(i)
这种方式,如果dict字符串中有null ,将不能变成dict
i_dict = json.loads(i)
#将str类型转化为dict policy = json.loads(p) #将dict类型转化为str p = json.dumps(policy)
以上是关于字符串变dict的主要内容,如果未能解决你的问题,请参考以下文章