python-json的用法

來源:互聯網
上載者:User

標籤:傳輸   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的用法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.