您的当前位置:首页正文

Json 写入 和 读取 txt

2024-11-10 来源:个人技术集锦
import json

写入

js = json.dumps(dic)   
file = open('test.txt', 'w')  
file.write(js)  
file.close()

读取

file = open('test.txt', 'r') 
js = file.read()
dic = json.loads(js)   
file.close() 
显示全文