Python——json格式数据与字典相互转换
Posted scarecrowmark
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python——json格式数据与字典相互转换相关的知识,希望对你有一定的参考价值。
import json dict = ‘s‘:‘you‘,‘d‘:‘are‘ #字典 #字典转json格式 dataJson = json.dumps(dict) #json字符串转化为字典 d1 = json.loads(dataJson)
以上是关于Python——json格式数据与字典相互转换的主要内容,如果未能解决你的问题,请参考以下文章