import json d = {"name":"老王","age":17} d1 = json.dumps(d) type(d1)#已经转化为json字符串 d2 = json.loads(d1) type(d2)#已经转化为字典
本文标题:Json和字典相互转换
本文链接:https://www.haomeiwen.com/subject/uumfnftx.html
网友评论