Python_json

 import json
'''
Python内置了json包来帮助我们完成对json的操作。
将Python的字典结构导出到json使用json.dumps(),将json读成Python的字典结构,使用json.loads()
如果不是针对string操作而是对文件操作,分别使用json.load()函数和json.dump()函数。
'''
data = {
'name':'ACME',
'shares':100,
'price':542.23
}
json_str = json.dumps(data)
data = json.loads(json_str) #Writing Json data to file
with open('data.json','w') as f:
json.dump(data,f) #Reading data back
with open('data.json','r') as f:
data = json.load(f) '''其他数据类型与Json之间的编码和解码
Json Python
object dict
array list
string unicode
number(int) int,long
number(real) float
true True
false False
null None 一般来说,Python对json的解析是list或dict之间的操作,如果需要其他类型与json之间交换,就需要object_hook参数。
先定义一个类,将类的字典初始化成json的key-value键值对。这样,json的参数就变成了类的属性
'''
x=[1,2,3]
y=json.dumps(x) #对列表进行编码
print('......')
y1=json.loads(y)
print(json.loads(y)) #解码
print(type(y1))
# <class 'list'>
x1={'a':1,'b':2,'c':3}
y2=json.dumps(x1) #对字典进行编码
print(type(y2))
# <class 'str'>
y3=json.loads(y2)
print(y3)
# {'c': 3, 'b': 2, 'a': 1}
print(type(y3))
# <class 'dict'>
fp=open('test.txt','a+')
json.dump({'a':1,'b':2,'c':3},fp) #对字典进行编码并写入文件
fp.close()
上一篇:【Bugly干货分享】老司机教你 “飙” EventBus 3


下一篇:http执行过程分析