序列化: dumps
把內(nèi)存的數(shù)據(jù)結(jié)構(gòu)保存下來
import json
dic={'a':1}
res1=json.dumps(dic)
re2=str(dic)
print(res1,type(res1)) #json格式都是用的雙引號
print(res2,type(res2))
x=None
res=json.dumps(x)
print(res,type(res))
import json #把python格式轉(zhuǎn)化為json格式
user={'name':'xiaoxiao','age':18,'ng':True}
with open('user.json','w',encoding='utf-8') as f:
f.write(json.dumps(user))
import json #同上
user={'name':'xiaoxiao','age':18,'ng':True}
json.dump(user,open('user_new.json','w',enccoding='utf-8')) #dump合并成一行
反序列化:loads
import json
with open('user.json','r',encoding='utf-8') as f:
user=json.loads(f.read()) #以json格式讀取文件內(nèi)容
print(user.['name'])
import json
u=json.load(open('user.json','r',encoding='utf-8')) #同上,load合并成一行
print(u['age'])
json_res={"name":'xi'} #json只能用雙引號
print(json.load(json_res))
pickle:序列化,能支持所有的Python類型,并以byte類型打開
improt pickle,json
s={1,2,3,4}
#print(json.dumps(s))
print(pickle.dumps(s))
with open('s.pkl','wb') as f:
f.write(pickle.dumps(s))
pickle.dump(s,open('s.pkl','wb')) #同上
#pickle反序列化
import pickle
with open('s.pkl','rb') as f:
s=pickle.loads(f.read())
print(s,type(s))
s=pickle.load(open('s.pkl','rb')) #同上
print(s,type(s))
新聞名稱:json,pickle模塊
當(dāng)前URL:http://aaarwkj.com/article16/pjsogg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)、網(wǎng)站設(shè)計公司、小程序開發(fā)、企業(yè)網(wǎng)站制作、外貿(mào)建站、自適應(yīng)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)