filename = '1.json'
file_obj= open(filename, 'w')
//此处是代码,返回值为XXXXXXXXX
json.dump(XXXXXXXXX,file_obj,indent=4,ensure_ascii=False)
XXXXXXX ,表示需要保存的数据
with open('1.json', 'r',encoding='utf-8') as file:
line=json.loads(file)
print(line)
这个line就是读取出来的数据,我们必须要用json来读取而不能用read,因为json带有转码功能,read没有转码功能。