Python操作json的方法实例分析

时间:2022-02-22 03:29:03

本文实例讲述了python操作json的方法。分享给大家供大家参考,具体如下:

python中对json操作方法有两种,解码loads()和编码dumps()

简单来说:

?
1
2
3
import json
dicts = json.loads()   #loads()方法,将json串解码为python对象,字典
json = json.dumps(dicts) #dumps()方法,将python字典编码为json串

简单例子:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
>>> import json
>>> dicts = {'name':'test','type':[{'happy':'fish'},{'sad':'man'}]}  #python的字典
>>> print(dicts.keys())        #python的字典可以通过内置的字典方法操作keys 和values
dict_keys(['type', 'name'])
>>> print(dicts['name'])
test
>>> print(dicts['type'][0]['happy'])
fish
>>> print(dicts['type'][1]['sad'])
man
>>> j = json.dumps(dicts)      #通过dumps()方法,将python字典编码为json串
>>> j
'{"type": [{"happy": "fish"}, {"sad": "man"}], "name": "test"}'
>>> print(j['name'])         #json不能通过字典方法获取keys 和 values了。
traceback (most recent call last):
 file "<pyshell#10>", line 1, in <module>
  print(j['name'])
typeerror: string indices must be integers

更多的信息,可以参考python内部的json文档:

?
1
python>>> help(json)

如下图所示:

Python操作json的方法实例分析

或者官方文档:http://docs.python.org/library/json.html#module-json

希望本文所述对大家python程序设计有所帮助。

原文链接:https://blog.csdn.net/JOJOY_tester/article/details/54644877