今天就跟大家聊聊有關(guān)Python JSON編解碼的方式有哪些,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
成都創(chuàng)新互聯(lián)是專業(yè)的武宣網(wǎng)站建設(shè)公司,武宣接單;提供網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè),網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行武宣網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!概念
JSON(JavaScript Object Notation) 是一種輕量級的數(shù)據(jù)交換格式,易于人閱讀和編寫。在日常的工作中,應(yīng)用范圍極其廣泛。這里就介紹python下它的兩種編解碼方法:
使用json函數(shù)
使用 JSON 函數(shù)需要導入 json 庫:import json。函數(shù)含義:
源碼解析:
# coding= utf-8 #!/usr/bin/python import json import sys data = {"username":"測試","age":16} #jsondata = json.dumps(data,ensure_ascii=False) jsondata = json.dumps(data) print("data convert to json") print type(json) text = json.loads(jsondata) print("json convert to data") print text["username"] print text["age"]