Python语言中对于json数据的编解码——Usage of json a Python standard library
一、概述
1.1 关于JSON数据格式
JSON (JavaScript Object Notation), specified by RFC 7159 (which obsoletes RFC 4627) and by ECMA-404, is a lightweight data interchange format inspired by JavaScript object literal syntax (although it is not a strict subset of JavaScript [1] ).
1.2 关于json库
json exposes an API familiar to users of the standard library marshal and pickle modules.
1.3 json库官网地址
json是a Python Standard Library,官网地址为:https://docs.python.org/3/library/json.html
二、学习历程
中文:http://www.ziqiangxuetang.com/python/python-json.html
英文:https://docs.python.org/3/library/json.html