-
Notifications
You must be signed in to change notification settings - Fork 0
/
json_sample.py
78 lines (61 loc) · 2.87 KB
/
json_sample.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/env python3
# encoding: utf-8
# @author: hoojo
# @email: hoojo_@126.com
# @github: https://github.com/hooj0
# @create date: 2018-04-18 22:59:56
# @copyright by hoojo@2018
# @changelog Added python3 `json lib` example
import json
'''
JSON (JavaScript Object Notation) 是一种轻量级的数据交换格式。它基于ECMAScript的一个子集。
Python3 中可以使用 json 模块来对 JSON 数据进行编解码,它包含了两个函数:
json.dumps(): 对数据进行编码。
json.loads(): 对数据进行解码
------------------------------------------------------------------------------
Python 编码为 JSON 类型转换对应表:
Python JSON
dict object
list, tuple array
str string
int, float, int- & float-derived Enums number
True true
False false
None null
--------------------------------------------------------------------------------
JSON 解码为 Python 类型转换对应表:
JSON Python
object dict
array list
string str
number (int) int
number (real) float
true True
false False
null None
'''
# Python 字典类型转换为 JSON 对象
data = {
'no' : 1,
'name' : 'jack',
'url' : 'http://www.jack.cn'
}
json_str = json.dumps(data)
print ("Python 原始数据:", repr(data))
print ("JSON 对象:", json_str)
json_data = json.loads(json_str)
print ("json_data['name']: ", json_data['name'])
print ("json_data['url']: ", json_data['url'])
# 格式化输出JSON
# sort_keys:是否按照字典排序(a-z)输出,True代表是,False代表否。
# indent=4:设置缩进格数,一般由于Linux的习惯,这里会设置为4。
# separators:设置分隔符,在dic = {'a': 1, 'b': 2, 'c': 3}这行代码里可以看到冒号和逗号后面都带了个空格,这也是因为Python的默认格式也是如此,如果不想后面带有空格输出,那就可以设置成separators=(',', ':'),如果想保持原样,可以写成separators=(', ', ': ')
# ensure_ascii=False :是否显示ascii这个码,默认是ture,改为False 即可
print(json.dumps(json_data, sort_keys=True, indent=4, separators=(',', ':'), ensure_ascii=False))
#如果你要处理的是文件而不是字符串,你可以使用 json.dump() 和 json.load() 来编码和解码JSON数据。例如:
# 写入 JSON 数据
with open('data.json', 'w') as f:
json.dump(data, f)
# 读取数据
with open('data.json', 'r') as f:
data = json.load(f)