美文网首页
Python 中文dict读写txt

Python 中文dict读写txt

作者: 小夏_3f26 | 来源:发表于2020-06-23 18:28 被阅读0次

将dict 写入txt

import json
js = json.dumps(data,ensure_ascii=False)   
file = open('test.txt', 'w')  
file.write(js)  
file.close()  

data: dict字典数据

从txt读取dict

import json

file = open('test.txt', 'r') 
js = file.read()
dic = json.loads(js)   
print(dic) 
file.close() 

相关文章

网友评论

      本文标题:Python 中文dict读写txt

      本文链接:https://www.haomeiwen.com/subject/htahfktx.html