JSON(JavaScript Object Notation) 是一種輕量級的數據交換格式,易於人閱讀和編寫。python
使用 JSON 函數須要導入 json 庫:import json。json
函數 | 描述 |
---|---|
json.dumps | 將 Python 對象編碼成 JSON 字符串 |
json.loads | 將已編碼的 JSON 字符串解碼爲 Python 對象 |
(1)json.dumps函數
json.dumps 用於將 Python 對象編碼成 JSON 字符串。編碼
json.dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=None, separators=None, encoding="utf-8", default=None, sort_keys=False, **kw)
舉例:spa
#!/usr/bin/python import json data = { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } json = json.dumps(data) print json
執行結果:code
{"a": 1, "c": 3, "b": 2, "e": 5, "d": 4}
python 原始類型向 json 類型的轉化對照表:對象
Python | JSON |
---|---|
dict | object |
list, tuple | array |
str, unicode | string |
int, long, float | number |
True | true |
False | false |
None | null |
(2)json.loadsblog
json.loads 用於解碼 JSON 數據。該函數返回 Python 字段的數據類型。ip
json.loads(s[, encoding[, cls[, object_hook[, parse_float[, parse_int[, parse_constant[, object_pairs_hook[, **kw]]]]]]]])
舉例:utf-8
#coding: utf-8 import json json_str = """ { "id" : 1, "name" : "python" } """ res = json.loads(json_str) print res print(res['id']) # 1 print(res['name']) # python
執行結果:
{u'id': 1, u'name': u'python'} 1 python
json 類型轉換到 python 的類型對照表:
JSON | Python |
---|---|
object | dict |
array | list |
string | unicode |
number (int) | int, long |
number (real) | float |
true | True |
false | False |
null | None |