溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python3快速入門(八)——Python3 JSON

發(fā)布時間:2020-09-06 13:27:21 來源:網(wǎng)絡(luò) 閱讀:1027 作者:天山老妖S 欄目:編程語言

Python3快速入門(八)——Python3 JSON

1、JSON簡介

JSON (JavaScript Object Notation) 是一種輕量級的數(shù)據(jù)交換格式,是基于ECMAScript的一個子集。

2、json模塊簡介

Python3 中可以使用 json 模塊來對 JSON 數(shù)據(jù)進(jìn)行編解碼,包含兩個函數(shù):
json.dumps():?對數(shù)據(jù)進(jìn)行編碼。
json.loads():?對數(shù)據(jù)進(jìn)行解碼。
在json的編解碼過程中,Python 的數(shù)據(jù)類型與json類型會相互轉(zhuǎn)換。
json.dump():將數(shù)據(jù)保存為JSON文件
json.load():從JSON文件讀取數(shù)據(jù)
Python數(shù)據(jù)類型編碼為JSON數(shù)據(jù)類型轉(zhuǎn)換表:
dict object
list,tuple array
str string
Int,float,enum number
True true
False false
None null
JSON解碼為Python數(shù)據(jù)類型轉(zhuǎn)換表:
object dict
array list
string str
number(int) int
number(real) float
true True
false False
null None

3、JSON實(shí)例

# -*- coding:utf-8 -*-
import json

data = {
    "id":"123456",
    "name":"Bauer",
    "age":30
}

jsonFile = "data.json"

if __name__ == '__main__':
    # 將字典數(shù)據(jù)轉(zhuǎn)換為JSON對象
    print("raw data: ", data)
    jsonObject = json.dumps(data)
    print("json data: ", jsonObject)
    # 將JSON對象轉(zhuǎn)換為字典類型數(shù)據(jù)
    rowData = json.loads(jsonObject)
    print("id: ", rowData["id"])
    print("name: ", rowData["name"])
    print("age: ", rowData["age"])
    # 將JSON對象保存為JSON文件
    with open(jsonFile, 'w') as file:
        json.dump(jsonObject, file)
    # 將JSON文件讀取內(nèi)容
    with open(jsonFile, 'r') as file:
        data = json.load(file)
        print(data)

# output:
# raw data:  {'id': '123456', 'name': 'Bauer', 'age': 30}
# json data:  {"id": "123456", "name": "Bauer", "age": 30}
# id:  123456
# name:  Bauer
# age:  30
# {"id": "123456", "name": "Bauer", "age": 30}
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI