1. python 保存json数据
import json
with open('json.txt', 'w+') as json_file:
json.dump(json_data, json_file)
#json_data是需要保存的json数据
2. python 读取文件中的json数据
with open('json.txt', 'r+') as json_file:
s = json_file.readlines()
a = json.loads(s)
print(a)
网友评论