python 把資料 json格式輸出的執行個體代碼_python

來源:互聯網
上載者:User

有個要求需要在python的標準輸出時候顯示json格式資料,如果縮排顯示查看資料效果會很好,這裡使用json的包會有很多操作

import json date = {u'versions': [{u'status': u'CURRENT', u'id': u'v2.3', u'links': [{u'href': u'http://controller:9292/v2/', u'rel': u'self'}]}, {u'status': u'SUPPORTED', u'id': u'v2.2', u'links': [{u'href': u'http://controller:9292/v2/', u'rel': u'self'}]}, {u'status': u'SUPPORTED', u'id': u'v2.1', u'links': [{u'href': u'http://controller:9292/v2/', u'rel': u'self'}]}, {u'status': u'SUPPORTED', u'id': u'v2.0', u'links': [{u'href': u'http://controller:9292/v2/', u'rel': u'self'}]}, {u'status': u'SUPPORTED', u'id': u'v1.1', u'links': [{u'href': u'http://controller:9292/v1/', u'rel': u'self'}]}, {u'status': u'SUPPORTED', u'id': u'v1.0', u'links': [{u'href': u'http://controller:9292/v1/', u'rel': u'self'}]}]} print json.dumps(data, sort_keys=True, indent=2) # 排序並且縮排兩個字元輸出

 這樣就會得到如下的輸出:

{ "versions": [  {   "id": "v2.3",   "links": [    {     "href": "http://controller:9292/v2/",     "rel": "self"    }   ],   "status": "CURRENT"  },  {   "id": "v2.2",   "links": [    {     "href": "http://controller:9292/v2/",     "rel": "self"    }   ],   "status": "SUPPORTED"  },  {   "id": "v2.1",   "links": [    {     "href": "http://controller:9292/v2/",     "rel": "self"    }   ],   "status": "SUPPORTED"  },  {   "id": "v2.0",   "links": [    {     "href": "http://controller:9292/v2/",     "rel": "self"    }   ],   "status": "SUPPORTED"  },  {   "id": "v1.1",   "links": [    {     "href": "http://controller:9292/v1/",     "rel": "self"    }   ],   "status": "SUPPORTED"  },  {   "id": "v1.0",   "links": [    {     "href": "http://controller:9292/v1/",     "rel": "self"    }   ],   "status": "SUPPORTED"  } ]}

可以看到都已經格式化了。

這是在python中,如果直接使用命令列,希望直接轉換,可以使用 data | python -mjson.tool 來輸出json格式的資料

echo '{"first_key": "value", "second_key": "value2"}' | python -mjson.tool

比如想直接在命令列中過濾得到first_key對於的值,那麼這樣即可:

echo '{"first_key": "value", "second_key": "value2"}' | python -c 'import sys, json; print json.load(sys.stdin)[sys.argv[1]]' first_key

就會得到對於的value了。

以上就是小編為大家帶來的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.