您的位置:首页 > 编程语言 > Python开发

Python语言中对于json数据的编解码——Usage of json a Python standard library

2016-12-21 15:52 615 查看

一、概述

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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐