溫馨提示×

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

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

什么是JSON模塊

發(fā)布時(shí)間:2020-09-24 10:36:41 來源:億速云 閱讀:163 作者:Leah 欄目:編程語言

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)什么是JSON模塊,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

json模塊

JSON (JavaScript Object Notation):是一個(gè)輕量級(jí)的數(shù)據(jù)交換格式模塊,受javascript對(duì)象文本語法啟發(fā),但不屬于JavaScript的子集。

常用方法:

dump(obj,fp):將對(duì)象以字符串的形式寫入文件中。

load(fp):將數(shù)據(jù)從文件中讀出,并返回(需要變量接收)數(shù)據(jù)的原類型。

dumps(obj):將對(duì)象轉(zhuǎn)換成json字符串形式。

loads(str):將json字符串?dāng)?shù)據(jù)轉(zhuǎn)換成原來的數(shù)據(jù)類型。

實(shí)例如下:dumps(obj) | loads(str)

import json
dict_1 = {"電影":"黃飛鴻","電視劇":"霍元甲"}
json_str = json.dumps(dict_1)  # 將字典轉(zhuǎn)換成json的字符串類型
dict_2 = json.loads(json_str)  # 將json的字符串類型轉(zhuǎn)換成原數(shù)據(jù)
print(json_str,type(json_str))
print(dict_2.items(),type(dict_2))

打印內(nèi)容如下

{"\u7535\u5f71": "\u9ec4\u98de\u9e3f", "\u7535\u89c6\u5267": "\u970d\u5143\u7532"} <class 'str'>
dict_items([('電影', '黃飛鴻'), ('電視劇', '霍元甲')]) <class 'dict'>

實(shí)例如下:dump(obj,fp) | load(fp)

import json
# 向文件中寫入json數(shù)據(jù)
dict_1 = {"電影":"黃飛鴻","電視劇":"霍元甲"}
file_write = open("json.txt",mode="w",encoding="utf-8")
json.dump(dict_1,file_write)  # 將字典以json的字符串類型寫入文件
file_write.close()

從文件中讀取json數(shù)據(jù)

file_read = open("json.txt",mode="r",encoding="utf-8")
dict_2 = json.load(file_read) # 將文件中內(nèi)容轉(zhuǎn)換成原數(shù)據(jù)類型并返回
file_read.close()
print(dict_2.items(),type(dict_2)) # 打印轉(zhuǎn)換后的數(shù)據(jù)

打印內(nèi)容如下

dict_items([('電影', '黃飛鴻'), ('電視劇', '霍元甲')]) <class 'dict'>

這里需要注意的是json模塊dump(obj,fp)雖然可以多次上傳,但是在load時(shí)會(huì)報(bào)錯(cuò),load(fp)函數(shù)不能轉(zhuǎn)換多次dump的數(shù)據(jù)。所以如果想要向json文件中新增數(shù)據(jù)時(shí),需要將數(shù)據(jù)load下來轉(zhuǎn)換成原數(shù)據(jù),然后在原數(shù)據(jù)基礎(chǔ)上進(jìn)行新增。最后將處理后的數(shù)據(jù)dump覆蓋寫到文件中。

上述就是小編為大家分享的什么是JSON模塊了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

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

AI