標籤:傳輸 with open res print 還原序列化 highlight 問題 \n python
使用json的兩種情境:
1:網路傳輸中使用
2,檔案讀寫的時候使用
json用法的幾個特點:
dumps ,loads在記憶體中操作
dump,load 在檔案中操作
json 在所有的語言之間都通用 : json序列化的資料 在python上序列化了 那在java中也可以還原序列化
能夠處理的資料類型是非常有限的 : 字串 列表 字典 數字
字典中的key只能是字串
如下面幾種用法就會出錯
# 問題1 錯把數字轉成字串# dic = {1 : ‘value‘,2 : ‘value2‘}# ret = json.dumps(dic) # 序列化# print(dic,type(dic))# print(ret,type(ret))## res = json.loads(ret) # 還原序列化# print(res,type(res))# 問題2 錯把元組轉成列表# dic = {1 : [1,2,3],2 : (4,5,‘aa‘)}# ret = json.dumps(dic) # 序列化# print(dic,type(dic))# print(ret,type(ret))# res = json.loads(ret) # 還原序列化# print(res,type(res))# 問題3# s = {1,2,‘aaa‘}# json.dumps(s)# 問題4 # TypeError: keys must be a string 字典key值位元組直接報錯# json.dumps({(1,2,3):123})
多此dump和多次load的問題:不支援多次dump和load
# 問題5 不支援連續的存 取# dic = {‘key1‘ : ‘value1‘,‘key2‘ : ‘value2‘}# with open(‘json_file‘,‘a‘) as f:# json.dump(dic,f)# json.dump(dic,f)# json.dump(dic,f)# with open(‘json_file‘,‘r‘) as f:# dic = json.load(f)# print(dic.keys())
上面的解決辦法就是使用dumps和loads,因為在記憶體中,一行一行的寫(加上分行符號),一行一行的讀
# 需求 :就是想要把一個一個的字典放到檔案中,再一個一個取出來???# dic = {‘key1‘ : ‘value1‘,‘key2‘ : ‘value2‘}## with open(‘json_file‘,‘a‘) as f:# str_dic = json.dumps(dic)# f.write(str_dic+‘\n‘)# str_dic = json.dumps(dic)# f.write(str_dic + ‘\n‘)# str_dic = json.dumps(dic)# f.write(str_dic + ‘\n‘)# with open(‘json_file‘,‘r‘) as f:# for line in f:# dic = json.loads(line.strip())# print(dic.keys())
python-json的用法