什么是Python中的JSON函數(shù)?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
創(chuàng)新互聯(lián)建站是一家集網(wǎng)站建設(shè),革吉企業(yè)網(wǎng)站建設(shè),革吉品牌網(wǎng)站建設(shè),網(wǎng)站定制,革吉網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,革吉網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
JSON函數(shù)
使用 JSON 函數(shù)需要導(dǎo)入 json 庫:import json。
舉例說明,如下:
a.json內(nèi)容格式:
{"car":{"price":1100,"color":"red"},"mac":{"price":7999,"color":"black"},"abc":{"price":122,"color":"green"}}
json.load()
import json with open('a.json') as fp: shop_dic = json.load(fp) #從a.json文件內(nèi)讀取數(shù)據(jù),返回結(jié)果為字典:{'abc': {'price': 122, 'color': 'green'}, 'mac': {'price': 7999, 'color': 'black'}, 'car': {'price': 1100, 'color': 'red'}} print(shop_dic)
json.loads()
s_json = '{"name":"niuniu","age":20,"status":true}' print(json.loads(s_json)) #將json串轉(zhuǎn)換為字典:{'age': 20, 'status': True, 'name': 'niuniu'}
json.dump()
import json with open('a.json', 'a+') as fp: dic = {'name': 'niuniu', 'age': 18} fp.seek(0) fp.truncate() json.dump(dic, fp) #將字典轉(zhuǎn)換為json串寫入文件
寫入的a.json如下:
{"age": 18, "name": "niuniu"} json.dumps() import json dic = {'name': 'niuniu', 'age': 18} print(json.dumps(dic)) #將字典轉(zhuǎn)換為json串:{"name": "niuniu", "age"
擴(kuò)展小知識(shí)點(diǎn):
將字典內(nèi)容寫入json文件,包含中文。
1. 中文寫入json文件后顯示亂碼,怎么解決? ensure_ascii = False
2. 寫入的字典內(nèi)容顯示為不一行,顯示不美觀,怎么解決? indent = 4
import json d = {"Name": "戰(zhàn)神","sex" : ["男","女","人妖"],"Education":{"GradeSchool" : "第一小學(xué)", "MiddleSchool" : ["第一初中" , "第一高中"], "University" :{ "Name" : "哈佛大學(xué)", "Specialty" : ["一年級(jí)","二年級(jí)"]}}} with open('a.json', 'w', encoding='utf-8') as f: # 中文顯示亂碼問題, ensure_ascii = False # json格式化問題, indent = 8 # s = json.dumps(d, ensure_ascii=False, indent=8) 字典轉(zhuǎn)換為json 字符串 # f.write(s) #第二種寫法 json.dump(d, f, ensure_ascii=False,indent=8)
寫入的json文件,a.json:
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。