python json.dumps json.loads

import json

json.dumps:将 Python 对象编码成 JSON 字符串

json.loads:将已编码的 JSON 字符串解码为 Python 对象

json.dump:把json写入文件

# 把字典写入文件
with open('data.txt','w') as json_file:
  json.dump(game_merge,json_file, ensure_ascii = False)
  # json_file.write(json.dumps(game_merge, ensure_ascii = False))

 

posted on 2017-07-19 15:01  sunshine_zhf  阅读(220)  评论(0编辑  收藏  举报

导航