import json
#json串就是字符串。
d = {
‘car‘:{‘color‘:‘red‘,‘price‘:100,‘count‘:50},
‘挨粪叉‘:{‘color‘:‘red‘,‘price‘:100,‘count‘:50},
‘挨粪叉1‘:{‘color‘:‘red‘,‘price‘:100,‘count‘:50},
‘挨粪叉2‘:{‘color‘:‘red‘,‘price‘:100,‘count‘:50},
‘挨粪叉3‘:{‘color‘:‘red‘,‘price‘:100,‘count‘:50},
‘挨粪叉4‘:{‘color‘:‘red‘,‘price‘:100,‘count‘:50},
}
# res = json.dumps(d,indent=8,ensure_ascii=False) #把list、字典转成json,indent多少缩进,ensure_ascii可以显示中文
# f1 = open(‘f1‘,‘w‘,encoding=‘utf-8‘)
# f1.write(res)
# f1 = open(‘f1‘,encoding=‘utf-8‘)
# res = f1.read()
# dict_res = json.loads(res) #把json串变成python的数据类型
# print(dict_res)
# f1 = open(‘f1‘,‘w‘,encoding=‘utf-8‘)
# json.dump(d,f1,ensure_ascii=False,indent=4)
#自动帮你写入文件,第一个参数是数据,第二个是文件对象
f1 = open(‘f1‘,encoding=‘utf-8‘)
print(json.load(f1))
#自动帮你读文件。
day5-Python学习笔记json数据类型
Posted Flynn丶傅
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了day5-Python学习笔记json数据类型相关的知识,希望对你有一定的参考价值。
以上是关于day5-Python学习笔记json数据类型的主要内容,如果未能解决你的问题,请参考以下文章