Python JSON
本章節我們將為大家介紹如何使用 Python 語言來編碼和解碼 JSON 物件。
環境配置
在使用 Python 編碼或解碼 JSON 資料前,我們需要先安裝 JSON 模組。本教學我們會下載 Demjson 並安裝:
$tar xvfz demjson-1.6.tar.gz $cd demjson-1.6 $python setup.py install
JSON 函數
函數
描述
demjson.encode(self, obj, nest_level=0)實例以下實例將陣列編碼為 JSON 格式資料:
#!/usr/bin/python import demjson data = [ { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } ] json = demjson.encode(data) print json以上程式碼執行結果為:
[{"a":1,"b":2,"c":3,"d":4,"e":5}]decode 資料函數可使用Pytson)。此函數傳回 Python 欄位的資料類型。 語法
demjson.decode(self, txt)實例以下實例展示了Python 如何解碼JSON 物件:
#!/usr/bin/python import demjson json = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; text = demjson.decode(json) print text以上程式碼執行結果為:
{u'a': 1, u'c': 3, u'b': 2, u'e': 5, u'd': 4}以上是中文更多相關教學的內容網(www.php.cn)!