json局限
- json不能序列化方法
json序列化
import json
jsons = json.dumps(info) # 将数据
file.write(jsons)
---------------------
json.dump(info,file)
json反序列化
import json
# 读取到一个字典对象
data = json.loads(file.read())
---------------------
json.load(file)
import json
jsons = json.dumps(info) # 将数据
file.write(jsons)
---------------------
json.dump(info,file)
import json
# 读取到一个字典对象
data = json.loads(file.read())
---------------------
json.load(file)