json相关

1.json介绍

json的介绍:http://www.json.org/json-zh.html

2、json与Python

json与Python:https://docs.python.org/3/library/json.html

什么是json?

    +-------------------+---------------+
    | Python            | JSON          |
    +===================+===============+
    | dict              |objects'{"":""}'|
    +-------------------+---------------+
    | list, tuple       | array[]       |
    +-------------------+---------------+
    | str               | string  '""'  |
    +-------------------+---------------+
    | int, float        | 'number'      |
    +-------------------+---------------+
    | True              | 'true '       |
    +-------------------+---------------+
    | False             | 'false'       |
    +-------------------+---------------+
    | None              | 'null'        |
    +-------------------+---------------+

  

原文地址:https://www.cnblogs.com/Ming-Hui/p/9301349.html