Python中字典和JSON互轉操作實例
JSON是一種輕量級的數據交換格式,各種語言都有良好的支持。字典是Python的一種數據結構??梢钥闯申P聯數組。
有些時候我們需要設計到字典轉換成JSON序列化到文件,或者從文件中讀取JSON。簡單備忘一下。
Dict轉JSON寫入文件
#!/usr/bin/env python
# coding=utf-8
import json
d = {'first': 'One', 'second':2}
json.dump(d, open('/tmp/result.txt', 'w'))
寫入結果
cat /tmp/result.txt
{"second": 2, "first": "One"}
讀取JSON
#!/usr/bin/env python
# coding=utf-8
import json
d = json.load(open('/tmp/result.txt','r'))
print d, type(d)
運行結果
{u'second': 2, u'first': u'One'} <type 'dict'>
其他
PS:關于json操作,這里再為大家推薦幾款比較實用的json在線工具供大家參考使用:
在線JSON代碼檢驗、檢驗、美化、格式化工具:
http://tools.jb51.net/code/json
JSON在線格式化工具:
http://tools.jb51.net/code/jsonformat
在線XML/JSON互相轉換工具:
http://tools.jb51.net/code/xmljson
json代碼在線格式化/美化/壓縮/編輯/轉換工具:
http://tools.jb51.net/code/jsoncodeformat
在線json壓縮/轉義工具:
http://tools.jb51.net/code/json_yasuo_trans
C語言風格/HTML/CSS/json代碼格式化美化工具:
http://tools.jb51.net/code/ccode_html_css_json
- Python xml、字典、json、類四種數據類型如何實現互相轉換
- 使用Python解析JSON數據的基本方法
- python中報錯"json.decoder.JSONDecodeError: Expecting value:"的解決
- Python操作json數據的一個簡單例子
- Python解析json時提示“string indices must be integers”問題解決方法
- Python解析json之ValueError: Expecting property name enclosed in double quotes: line 1 column 2(char 1)
- Python中json.dumps()函數的使用解析
- Python Json模塊中dumps、loads、dump、load函數介紹
- python中將字典轉換成其json字符串
- python將字符串轉換成json的方法小結
- Python中數據類轉換為JSON的方法詳解
相關文章
Python探索之靜態(tài)方法和類方法的區(qū)別詳解
這篇文章主要介紹了Python探索之靜態(tài)方法和類方法的區(qū)別詳解,小編覺得還是挺不錯的,這里分享給大家,供需要的朋友參考。2017-10-10
Pandas告警UserWarning:pandas?only?supports?SQLAlchemy?conn
這篇文章主要給大家介紹了關于Pandas告警UserWarning:pandas only supports SQLAlchemy connectable的處理方式,文中還分享了pandas還有哪些userwarning,對大家學習或者工作具有一定的參考借鑒價值,需要的朋友可以參考下2024-02-02

