真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python入門進(jìn)階教程-JSON操作-創(chuàng)新互聯(lián)

什么是JSON?

創(chuàng)新互聯(lián)公司專注于裕華網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供裕華營銷型網(wǎng)站建設(shè),裕華網(wǎng)站制作、裕華網(wǎng)頁設(shè)計(jì)、裕華網(wǎng)站官網(wǎng)定制、小程序開發(fā)服務(wù),打造裕華網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供裕華網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
JSON 的全稱是 JavaScript Object Notation,即 JavaScript 對(duì)象符號(hào),它是一種輕量級(jí)、跨平臺(tái)、跨語言的數(shù)據(jù)交換格式,其設(shè)計(jì)意圖是把所有事情都用設(shè)計(jì)的字符串來表示,這樣既方便在互聯(lián)網(wǎng)上傳遞信息,也方便人進(jìn)行閱讀。

JSON 主要有兩種數(shù)據(jù)結(jié)構(gòu):

  • 由 key-value對(duì)組成的數(shù)據(jù)結(jié)構(gòu)。這種數(shù)據(jù)結(jié)構(gòu)在不同的語言中有不同的實(shí)現(xiàn)。例如在 Python中是一種 dict 對(duì)象;在C語言中是一個(gè)struct;在其他語言中,則可能是 record等。
  • 有序集合。這種數(shù)據(jù)結(jié)構(gòu)在 Python 中對(duì)應(yīng)于列表;在其他語言中,可能對(duì)應(yīng)于 list等。

JSON類型轉(zhuǎn)換

當(dāng)程序把 JSON 對(duì)象或 JSON 字符串轉(zhuǎn)換成 Python 對(duì)象時(shí),從 JSON 類型到 Python 類型的轉(zhuǎn)換關(guān)系如下所示:

JSON類型Python類型JSON 類型Python 類型對(duì)象(object)字典(dict)數(shù)組(array列表(list)字符串(string)字符串(str)整數(shù)(number(int))整數(shù)(int)實(shí)數(shù)(number(real))浮點(diǎn)數(shù)(float)trueTruefalseFalsenullNone

同樣的,當(dāng)程序把 Python 對(duì)象轉(zhuǎn)換成 JSON 格式字符串時(shí),從 Python 類型到 JSON 類型的轉(zhuǎn)換關(guān)系如下所示:

Python類型JSON類型Python 類型JSON 類型字典(dict)對(duì)象(object)列表(list)和元組(tuple)數(shù)組(array)字符串(str)字符串(string)整型、浮點(diǎn)數(shù),枚舉數(shù)值型(number)TruetrueFalsefalseNonenull

json模塊

Python3 中可以使用 json 模塊來對(duì) JSON 數(shù)據(jù)進(jìn)行編解碼,它包含了兩個(gè)函數(shù):

  • json.dumps(): 對(duì)數(shù)據(jù)進(jìn)行編碼。
  • json.loads(): 對(duì)數(shù)據(jù)進(jìn)行解碼。

== 使用dumps函數(shù)對(duì)數(shù)據(jù)進(jìn)行編碼==

import json
# 創(chuàng)建字典類型Person
person = {
    'name': '知秋小夢',
    'gender': 'male',
    'age': 18
}
# Python字典類型轉(zhuǎn)換為JSON對(duì)象
json_person = json.dumps(person)
print(json_person)
# 輸出
{"name": "\u77e5\u79cb\u5c0f\u68a6", "gender": "male", "age": 18}

輸出的中文是中文的ascii字符碼,而不是真正的中文。
這是因?yàn)閖son.dumps 序列化時(shí)對(duì)中文默認(rèn)使用的ascii編碼
因此需要使用ensure_ascii=False來指定出中文

# 設(shè)置不適用ascll編碼
json_person = json.dumps(person,ensure_ascii=False)
print(json_person)
# 輸出
{"name": "知秋小夢", "gender": "male", "age": 18}

== 使用loads函數(shù)對(duì)數(shù)據(jù)進(jìn)行解碼 ==

# 將 JSON 對(duì)象轉(zhuǎn)換為 Python 字典
dict_person = json.loads(json_person)
print("person['name']: ",dict_person['name'])
print("person['age']: ", dict_person['age'])
# 輸出
person['name']:  知秋小夢
person['age']:  18

json文件

dumps()和loads()主要用于Python和json對(duì)象的相互轉(zhuǎn)化,dump()與load()主要用于讀寫json文件
# 寫入 JSON 數(shù)據(jù)
with open('data.json', 'w', encoding='utf-8') as f:
    json.dump(data, f)
# 讀取 JSON 數(shù)據(jù)
with open('data.json', 'r', encoding='utf-8') as f:
    data = json.load(f)

JSON作為數(shù)據(jù)存儲(chǔ)、交互用的比較多,比如網(wǎng)頁cookie、數(shù)據(jù)交互等,建議掌握!


新聞標(biāo)題:Python入門進(jìn)階教程-JSON操作-創(chuàng)新互聯(lián)
網(wǎng)頁URL:http://weahome.cn/article/dsdhje.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部