python 读写json
Posted 爱吃橘子的司徒弘和
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 读写json相关的知识,希望对你有一定的参考价值。
python 读写json
- 将python dict 写入json文件
json.dump()
import json dict = {‘a‘:1213,‘b‘:[‘ad‘,3,‘23fs‘]} with open("file_path", "w") as json_f: json.dump(dict, json_f)
- 读取json文件
- json.load()
import json() with open("file_path", "r") as json_f: dict = json.load(json_f)
- 将python字典转换成json字符串
- json.dumps()
import json dict = {‘a‘:1213,‘b‘:[‘ad‘,3,‘23fs‘]} dict_str = json.dumps(dict)
- 将json字符串转换成python字典
- json.loads()
import json dict_str = ‘{‘a‘:1213,‘b‘:[‘ad‘,3,‘23fs‘]}‘ dict = json.loads(dict_str)
以上是关于python 读写json的主要内容,如果未能解决你的问题,请参考以下文章