Python的json操作

Posted 撒欢

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python的json操作相关的知识,希望对你有一定的参考价值。

对数据:
    json = json.dumps(data)  编码  dict->string  排序sort_keys=True, 缩进indent=4, 分隔符separators=(‘,‘, ‘: ‘)
    json = json.loads(data)  解码  string->dict
对文件:
    json.dump(data, f)  string写入文件  缩进indent=4  ""  " "
    data = json.load(f)  读出成dict






以上是关于Python的json操作的主要内容,如果未能解决你的问题,请参考以下文章

Python 读取 JSON 数据操作

Python 读取 JSON 数据操作

python中的json操作

Python的json操作

python操作json

Python_python对Json进行操作