3 Star 0 Fork 1

mirrors_trekhleb/learn-python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test_json.py 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
Oleksii Trekhleb 提交于 2018-08-29 23:23 +08:00 . Add Python scripts.
"""Serialization.
@see: https://www.learnpython.org/en/Serialization
Python provides built-in JSON libraries to encode and decode JSON.
"""
import json
def test_json():
"""JSON serialization."""
# There are two basic formats for JSON data. Either in a string or the object data-structure.
# The object data-structure, in Python, consists of lists and dictionaries nested inside each
# other. The object data-structure allows one to use python methods (for lists and dictionaries)
# to add, list, search and remove elements from the data-structure. The String format is mainly
# used to pass the data into another program or load into a data-structure.
person_dictionary = {'first_name': 'John', 'last_name': 'Smith', 'age': 42}
assert person_dictionary['first_name'] == 'John'
assert person_dictionary['age'] == 42
json_string = '{"first_name": "John", "last_name": "Smith", "age": 42}'
# To load JSON back to a data structure, use the "loads" method. This method takes a string
# and turns it back into the json object data-structure:
person_parsed_dictionary = json.loads(json_string)
assert person_parsed_dictionary == person_dictionary
assert person_parsed_dictionary['first_name'] == 'John'
assert person_parsed_dictionary['age'] == 42
# To encode a data structure to JSON, use the "dumps" method. This method takes an object and
# returns a String:
encoded_person_string = json.dumps(person_dictionary)
assert encoded_person_string == json_string
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_trekhleb/learn-python.git
git@gitee.com:mirrors_trekhleb/learn-python.git
mirrors_trekhleb
learn-python
learn-python
master

搜索帮助