Python的字典和JSON

來源:互聯網
上載者:User

Python的字典和JSON在表現形式上非常相似

#這是Python中的一個字典 dic = { 'str': 'this is a string', 'list': [1, 2, 'a', 'b'], 'sub_dic': { 'sub_str': 'this is sub str', 'sub_list': [1, 2, 3] }, 'end': 'end' } //這是javascript中的一個JSON對象 json_obj = { 'str': 'this is a string', 'arr': [1, 2, 'a', 'b'], 'sub_obj': { 'sub_str': 'this is sub str', 'sub_list': [1, 2, 3] }, 'end': 'end' }

實際上JSON就是Python字典的字串表示,但是字典作為一個複雜物件是無法直接轉換成定義它的代碼的字串(不能傳遞所以需要將其轉換成字串先),Python有一個叫simplejson的庫可以方便的完成JSON的產生和解析,這個包已經包含在Python2.6中,就叫json 主要包含四個方法: dump和dumps(從Python產生JSON),load和loads(解析JSON成Python的資料類型)dump和dumps的唯一區別是dump會產生一個類檔案對象,dumps會產生字串,同理load和loads分別解析類檔案對象和字串格式的JSON

import json dic = { 'str': 'this is a string', 'list': [1, 2, 'a', 'b'], 'sub_dic': { 'sub_str': 'this is sub str', 'sub_list': [1, 2, 3] }, 'end': 'end' } json.dumps(dic) #output: #'{"sub_dic": {"sub_str": "this is sub str", "sub_list": [1, 2, 3]}, "end": "end", "list": [1, 2, "a", "b"], "str": "this is a string"}'

 

 1 #coding=utf-8 2  3 import httplib 4 import json 5 conn = httplib.HTTPConnection("m.weather.com.cn")  6 conn.request("GET","/data/101110101.html") 7 weather=conn.getresponse()  8 info=weather.read()  9 weatherinfo = json.loads(info)10 print weatherinfo['weatherinfo']['city'],11 conn.close() 

 

1 >>> ================================ RESTART ================================2 >>> 3 西安4 >>> 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.