Python JSON (JavaScript Object Notation) 說明及範例
JSON (JavaScript Object Notation) 是一種輕量級的數據交換格式,它基於ECMAScript的一個子集。
Python3 中可以使用 json 模塊來對 JSON 數據進行編解碼,它包含了兩個函數:
json.dumps(): 對數據進行編碼。
json.loads(): 對數據進行解碼。
在json的編解碼過程中,python 的原始類型與json類型會相互轉換,具體的轉化對照如下:
Python 編碼為 JSON 類型轉換對應表
Python | JSON |
---|---|
dict | object |
list, tuple | array |
str | string |
int, float, int- & float-derived Enums | number |
True | true |
False | false |
None | null |
JSON 解碼為 Python 類型轉換對應表:
JSON | Python |
---|---|
object | dict |
array | list |
string | str |
number (int) | int |
number (real) | float |
true | True |
false | False |
null | None |
處理時如果是檔案文件而不是字串,你可以使用 json.dump() 和 json.load() 來編碼和解碼JSON數據
import json # 寫入 JSON 數據 with open('data.json', 'w') as f: json.dump(data, f) # 讀取數據 with open('data.json', 'r') as f: data = json.load(f)
熱門評論