創(chuàng)新互聯(lián)www.cdcxhl.cn八線動(dòng)態(tài)BGP香港云服務(wù)器提供商,新人活動(dòng)買多久送多久,劃算不套路!
企業(yè)建站必須是能夠以充分展現(xiàn)企業(yè)形象為主要目的,是企業(yè)文化與產(chǎn)品對(duì)外擴(kuò)展宣傳的重要窗口,一個(gè)合格的網(wǎng)站不僅僅能為公司帶來(lái)巨大的互聯(lián)網(wǎng)上的收集和信息發(fā)布平臺(tái),創(chuàng)新互聯(lián)建站面向各種領(lǐng)域:成都報(bào)廢汽車回收等成都網(wǎng)站設(shè)計(jì)、營(yíng)銷型網(wǎng)站建設(shè)解決方案、網(wǎng)站設(shè)計(jì)等建站排名服務(wù)。什么是Python中的JSON函數(shù)?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。
JSON函數(shù)
使用 JSON 函數(shù)需要導(dǎo)入 json 庫(kù):import json。
舉例說(shuō)明,如下:
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: # 中文顯示亂碼問(wèn)題, ensure_ascii = False # json格式化問(wèn)題, 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)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。